Skip to content

Commit

Permalink
tests: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Apr 1, 2024
1 parent 1b2769f commit a4e1d7d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/test_cli_compress.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,11 @@ def test_compress_basin_preserved_compress():
basin_locs=[h5path],
basin_descr="an example test basin",
)
h5path_out = h5path_small.with_name("compressed.rtdc")
cli.compress(path_in=h5path_small,
path_out=h5path_out,
)
# compress the data
h5path_out = h5path_small.with_name("compressed.rtdc")
cli.compress(path_in=h5path_small,
path_out=h5path_out,
)

with h5py.File(h5path_out) as h5_out, h5py.File(h5path_small) as h5_in:
# check if h5path_out is empty
Expand Down

0 comments on commit a4e1d7d

Please sign in to comment.