@@ -11,7 +11,7 @@ def test__perfect_fit__chi_squared_0():
1111
1212 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 , over_sample_size = 1 )
1313
14- psf = al .Kernel2D .from_gaussian (
14+ psf = al .Convolver .from_gaussian (
1515 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
1616 )
1717
@@ -85,7 +85,7 @@ def test__simulate_imaging_data_and_fit__known_likelihood():
8585
8686 grid = al .Grid2D .uniform (shape_native = (31 , 31 ), pixel_scales = 0.2 )
8787
88- psf = al .Kernel2D .from_gaussian (
88+ psf = al .Convolver .from_gaussian (
8989 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
9090 )
9191
@@ -127,7 +127,7 @@ def test__simulate_imaging_data_and_fit__linear_light_profiles_agree_with_standa
127127
128128 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 , over_sample_size = 1 )
129129
130- psf = al .Kernel2D .from_gaussian (
130+ psf = al .Convolver .from_gaussian (
131131 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
132132 )
133133
@@ -235,7 +235,7 @@ def test__simulate_imaging_data_and_fit__linear_light_profiles_and_pixelization(
235235
236236 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 , over_sample_size = 1 )
237237
238- psf = al .Kernel2D .from_gaussian (
238+ psf = al .Convolver .from_gaussian (
239239 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
240240 )
241241
@@ -357,7 +357,7 @@ def test__simulate_imaging_data_and_fit__linear_light_profiles_and_pixelization_
357357
358358 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 , over_sample_size = 2 )
359359
360- psf = al .Kernel2D .from_gaussian (
360+ psf = al .Convolver .from_gaussian (
361361 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
362362 )
363363
@@ -489,7 +489,7 @@ def test__simulate_imaging_data_and_fit__linear_light_profiles_and_pixelization_
489489
490490 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 , over_sample_size = 2 )
491491
492- psf = al .Kernel2D .from_gaussian (
492+ psf = al .Convolver .from_gaussian (
493493 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
494494 )
495495
@@ -645,7 +645,7 @@ def test__simulate_imaging_data_and_fit__complex_fit_compare_mapping_matrix_spar
645645
646646 grid = al .Grid2D .uniform (shape_native = (21 , 21 ), pixel_scales = 0.1 )
647647
648- psf = al .Kernel2D .from_gaussian (
648+ psf = al .Convolver .from_gaussian (
649649 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
650650 )
651651
@@ -748,7 +748,7 @@ def test__fit_figure_of_merit__mge_mass_model(masked_imaging_7x7, masked_imaging
748748 grid = al .Grid2D .uniform (shape_native = (11 , 11 ), pixel_scales = 0.2 ,
749749 over_sample_size = 8 )
750750
751- psf = al .Kernel2D .from_gaussian (
751+ psf = al .Convolver .from_gaussian (
752752 shape_native = (3 , 3 ), pixel_scales = 0.2 , sigma = 0.75 , normalize = True
753753 )
754754
0 commit comments