Skip to content

Commit

Permalink
Fixed error in test_datasets.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHerzing committed Oct 3, 2023
1 parent 1d0cb9d commit a34ae1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tomotools/tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ def test_get_misaligned_simulated_series(self, misalign=True):
stack = ds.get_catalyst_tilt_series(misalign=True)
assert type(stack) is tomotools.TomoStack

def test_get_noisy_simulated_series(self, noise=True):
stack = ds.get_catalyst_tilt_series()
def test_get_noisy_simulated_series(self):
stack = ds.get_catalyst_tilt_series(noise=True)
assert type(stack) is tomotools.TomoStack

def test_get_noisy_misaligned_simulated_series(self, noise=True,
Expand Down

0 comments on commit a34ae1c

Please sign in to comment.