@@ -212,7 +212,7 @@ def test__full_and_extracted_fits_from_instance_and_imaging_ci(
212212
213213 fit = ac .FitImagingCI (dataset = masked_dataset , post_cti_data = post_cti_data )
214214
215- assert fit .image .shape == (7 , 1 )
215+ assert fit .data .shape == (7 , 1 )
216216 assert fit_analysis .log_likelihood == pytest .approx (fit .log_likelihood )
217217
218218 fit_full_analysis = analysis .fit_via_instance_and_dataset_from (
@@ -221,7 +221,7 @@ def test__full_and_extracted_fits_from_instance_and_imaging_ci(
221221
222222 fit = ac .FitImagingCI (dataset = imaging_ci_7x7 , post_cti_data = post_cti_data )
223223
224- assert fit .image .shape == (7 , 7 )
224+ assert fit .data .shape == (7 , 7 )
225225 assert fit_full_analysis .log_likelihood == pytest .approx (fit .log_likelihood )
226226
227227
@@ -273,7 +273,7 @@ def test__extracted_fits_from_instance_and_imaging_ci__include_noise_scaling(
273273 },
274274 )
275275
276- assert fit .image .shape == (7 , 1 )
276+ assert fit .data .shape == (7 , 1 )
277277 assert fit .log_likelihood == pytest .approx (fit_analysis .log_likelihood , 1.0e-4 )
278278
279279 fit = ac .FitImagingCI (
@@ -300,7 +300,7 @@ def test__extracted_fits_from_instance_and_imaging_ci__include_noise_scaling(
300300 },
301301 )
302302
303- assert fit .image .shape == (7 , 7 )
303+ assert fit .data .shape == (7 , 7 )
304304 assert fit .log_likelihood == pytest .approx (fit_full_analysis .log_likelihood , 1.0e-4 )
305305
306306 fit = ac .FitImagingCI (
0 commit comments