mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2025-01-10 06:04:28 +00:00
dict not list
This commit is contained in:
parent
2b530c4b33
commit
79397ec398
2 changed files with 4 additions and 1 deletions
|
@ -294,4 +294,4 @@ def nwb_schema() -> NWBSchemaTest:
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
return NWBSchemaTest(datasets=[image], groups=[images])
|
return NWBSchemaTest(datasets={'image':image}, groups={'images':images})
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import pdb
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from ..fixtures import linkml_schema_bare, linkml_schema, nwb_schema
|
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
|
# simplest case, nothing special here
|
||||||
dset = DatasetAdapter(cls=nwb_schema.datasets['image'])
|
dset = DatasetAdapter(cls=nwb_schema.datasets['image'])
|
||||||
|
|
||||||
|
#pdb.set_trace()
|
||||||
pass
|
pass
|
Loading…
Reference in a new issue