@@ -28,7 +28,7 @@ def test_tomography_context_add_tomo_tilt(mock_post, mock_get, tmp_path):
2828 visit = "test" ,
2929 murfey_session = 1 ,
3030 )
31- context = TomographyContext ("tomo" , tmp_path )
31+ context = TomographyContext ("tomo" , tmp_path , "" )
3232 (tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ).touch ()
3333 context .post_transfer (
3434 tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ,
@@ -85,7 +85,7 @@ def test_tomography_context_add_tomo_tilt_out_of_order(mock_post, mock_get, tmp_
8585 visit = "test" ,
8686 murfey_session = 1 ,
8787 )
88- context = TomographyContext ("tomo" , tmp_path )
88+ context = TomographyContext ("tomo" , tmp_path , "" )
8989 (tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ).touch ()
9090 context .post_transfer (
9191 tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ,
@@ -170,7 +170,7 @@ def test_tomography_context_add_tomo_tilt_delayed_tilt(mock_post, mock_get, tmp_
170170 visit = "test" ,
171171 murfey_session = 1 ,
172172 )
173- context = TomographyContext ("tomo" , tmp_path )
173+ context = TomographyContext ("tomo" , tmp_path , "" )
174174 (tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ).touch ()
175175 context .post_transfer (
176176 tmp_path / "Position_1_001_[30.0]_date_time_fractions.tiff" ,
@@ -214,7 +214,7 @@ def test_tomography_context_add_tomo_tilt_delayed_tilt(mock_post, mock_get, tmp_
214214
215215
216216def test_tomography_context_initialisation_for_serialem (tmp_path ):
217- context = TomographyContext ("serialem" , tmp_path )
217+ context = TomographyContext ("serialem" , tmp_path , "" )
218218 assert not context ._completed_tilt_series
219219 assert context ._acquisition_software == "serialem"
220220
@@ -235,7 +235,7 @@ def test_setting_tilt_series_size_and_completion_from_mdoc_parsing(
235235 visit = "test" ,
236236 murfey_session = 1 ,
237237 )
238- context = TomographyContext ("tomo" , tmp_path )
238+ context = TomographyContext ("tomo" , tmp_path , "" )
239239 assert len (context ._tilt_series_sizes ) == 0
240240 context .post_transfer (
241241 Path (__file__ ).parent .parent / "util" / "test_1.mdoc" ,
0 commit comments