diff --git a/tomotools/tests/test_datasets.py b/tomotools/tests/test_datasets.py index e654f422..03489d12 100644 --- a/tomotools/tests/test_datasets.py +++ b/tomotools/tests/test_datasets.py @@ -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