Skip to content

Commit

Permalink
fix typos in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Ercius ncem-gauss jupyter committed Sep 16, 2024
1 parent 4931a60 commit 91dca0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sparse_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,11 +714,11 @@ def test_keep_flyback(cropped_multi_frames_v3):
# Test keeping the flyback
flyback = SparseArray.from_hdf5(cropped_multi_frames_v3, keep_flyback=True)
assert flyback.scan_shape[1] == 20
assert flyback.num_frames_per_scan = 2
assert flyback.num_frames_per_scan == 2
# Test removing the flyback
no_flyback = SparseArray.from_hdf5(cropped_multi_frames_v3, keep_flyback=False)
assert no_flyback.scan_shape[1] == 19
assert flyback.num_frames_per_scan = 2
assert flyback.num_frames_per_scan == 2

# Test binning until this number
TEST_BINNING_UNTIL = 33
Expand Down

0 comments on commit 91dca0b

Please sign in to comment.