Skip to content

Commit

Permalink
Update writer test
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseMckinzie committed Jun 25, 2024
1 parent e5a0fae commit 18462fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def test_write_zarr_2d(self):
# Use the temporary directory
test_file_path = os.path.join(dir, 'out/test.ome.zarr')

bw = TSWriter(test_file_path)
bw.write_image(tmp, tmp.shape, tmp.shape)
bw = TSWriter(test_file_path, tmp.shape, tmp.shape, str(tmp.dtype))
bw.write_image(tmp)
bw.close()

br = TSReader(
Expand Down

0 comments on commit 18462fc

Please sign in to comment.