Skip to content

Commit

Permalink
Fix broken GroupSpec tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Feb 6, 2025
1 parent 2e5090f commit 28a9e64
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/unit/test_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ def test_constructor(self):
neurodata_type_def='TimeSeries',
neurodata_type_inc='NWBData',
linkable=True,
quantity='*',
name='Group1',
)
self.assertEqual(spec.doc, 'A test group')
Expand All @@ -79,15 +78,13 @@ def test_add_group(self):
neurodata_type_def='TimeSeries',
neurodata_type_inc='NWBData',
linkable=True,
quantity='*',
name='Group1',
)
spec.add_group(
doc='A test group',
neurodata_type_def='TimeSeries',
neurodata_type_inc='NWBData',
linkable=True,
quantity='*',
name='Group2',
)
self.assertEqual(len(spec.groups), 1)
Expand All @@ -100,7 +97,6 @@ def test_add_dataset(self):
neurodata_type_def='TimeSeries',
neurodata_type_inc='NWBData',
linkable=True,
quantity='*',
name='Group1',
)
spec.add_dataset(
Expand Down

0 comments on commit 28a9e64

Please sign in to comment.