Skip to content
Snippets Groups Projects
Commit 03646082 authored by Cam Saul's avatar Cam Saul
Browse files

fix api.meta.field-test when ran independently

parent e6583d5e
No related branches found
No related tags found
No related merge requests found
......@@ -10,8 +10,9 @@
;; ## GET /api/meta/field/:id
(expect
(match-$ (sel :one Field :id (field->id :users :name))
{:description nil
(match-$ (let [field-id (field->id :users :name)] ; !!! field->id causes lazy loading of the test data and Metabase DB
(sel :one Field :id field-id)) ; If it's not evaluated before sel then the Metabase DB won't exist when sel
{:description nil ; is executed
:table_id (table->id :users)
:table (match-$ (sel :one Table :id (table->id :users))
{:description nil
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment