Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Mar 17, 2024
1 parent 321a0a2 commit b9771b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/common/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@ def test_dci_int_ok(self):
a = np.arange(30)
dci = DataChunkIterator(data=a, buffer_size=1)
e = ElementIdentifiers(name='ids', data=dci) # test that no error is raised
self.assertIs(e.data.data, dci)
self.assertIs(e.data, dci)

def test_dci_float_bad(self):
a = np.arange(30.0)
Expand All @@ -1423,7 +1423,7 @@ def test_dataio_dci_ok(self):
dci = DataChunkIterator(data=a, buffer_size=1)
dio = H5DataIO(dci)
e = ElementIdentifiers(name='ids', data=dio) # test that no error is raised
self.assertIs(e.data.data, dio)
self.assertIs(e.data, dio)


class SubTable(DynamicTable):
Expand Down

0 comments on commit b9771b5

Please sign in to comment.