Skip to content

Commit

Permalink
Changed calls to get_catalyst_tilt_series in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewHerzing committed Jun 13, 2024
1 parent 6f73515 commit b5aa87d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tomotools/tests/test_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ def test_get_aligned_experimental_data(self):

class TestSimDatasetRetrieval:
def test_get_simulated_series(self):
stack = ds.get_catalyst_tilt_series()
stack = ds.get_catalyst_data()
assert type(stack) is tomotools.TomoStack

def test_get_misaligned_simulated_series(self, misalign=True):
stack = ds.get_catalyst_tilt_series(misalign=True)
stack = ds.get_catalyst_data(misalign=True)
assert type(stack) is tomotools.TomoStack

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

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

0 comments on commit b5aa87d

Please sign in to comment.