dict not list

This commit is contained in:
sneakers-the-rat 2023-10-09 19:05:08 -07:00
parent 2b530c4b33
commit 79397ec398
2 changed files with 4 additions and 1 deletions

View file

@ -294,4 +294,4 @@ def nwb_schema() -> NWBSchemaTest:
)
]
)
return NWBSchemaTest(datasets=[image], groups=[images])
return NWBSchemaTest(datasets={'image':image}, groups={'images':images})

View file

@ -1,3 +1,5 @@
import pdb
import pytest
from ..fixtures import linkml_schema_bare, linkml_schema, nwb_schema
@ -8,4 +10,5 @@ def test_build_base(nwb_schema):
# simplest case, nothing special here
dset = DatasetAdapter(cls=nwb_schema.datasets['image'])
#pdb.set_trace()
pass