Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
mavaylon1 committed Jul 2, 2024
1 parent e86ff6e commit a592345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/utils_test/test_data_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class TestAppendData(TestCase):
def test_append_exception(self):
data = MyIterable([1, 2, 3, 4, 5])
with self.assertRaises(ValueError):
rappend_data(data, 4)
append_data(data, 4)


class TestZarrAppendData(TestCase):
Expand All @@ -32,7 +32,7 @@ def setUp(self):
def test_append_exception(self):
data = MyIterable([1, 2, 3, 4, 5])
with self.assertRaises(ValueError):
rappend_data(data, 4)
append_data(data, 4)

def test_append_data_zarr(self):
zarr_array = zarr.array([1,2,3])
Expand Down

0 comments on commit a592345

Please sign in to comment.