@@ -70,7 +70,7 @@ def test__fit_figure_of_merit(masked_imaging_7x7, masked_imaging_covariance_7x7)
7070 assert fit .figure_of_merit == pytest .approx (- 648.4814555620 , 1.0e-4 )
7171
7272 pixelization = al .Pixelization (
73- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
73+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
7474 regularization = al .reg .Constant (coefficient = 1.0 ),
7575 )
7676
@@ -86,7 +86,7 @@ def test__fit_figure_of_merit(masked_imaging_7x7, masked_imaging_covariance_7x7)
8686 galaxy_light = al .Galaxy (redshift = 0.5 , bulge = al .lp .Sersic (centre = (0.05 , 0.05 ), intensity = 1.0 ))
8787
8888 pixelization = al .Pixelization (
89- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
89+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
9090 regularization = al .reg .Constant (coefficient = 1.0 ),
9191 )
9292
@@ -256,7 +256,7 @@ def test__fit_figure_of_merit__sub_2(image_7x7, psf_3x3, noise_map_7x7, mask_2d_
256256 assert fit .figure_of_merit == pytest .approx (- 41.60614104506277 , 1.0e-4 )
257257
258258 pixelization = al .Pixelization (
259- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
259+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
260260 regularization = al .reg .Constant (coefficient = 1.0 ),
261261 )
262262
@@ -272,7 +272,7 @@ def test__fit_figure_of_merit__sub_2(image_7x7, psf_3x3, noise_map_7x7, mask_2d_
272272 galaxy_light = al .Galaxy (redshift = 0.5 , bulge = al .lp .Sersic (intensity = 1.0 ))
273273
274274 pixelization = al .Pixelization (
275- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
275+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
276276 regularization = al .reg .Constant (coefficient = 1.0 ),
277277 )
278278
@@ -448,7 +448,7 @@ def test__fit__model_dataset__grid_offset__handles_special_behaviour(masked_imag
448448 )
449449
450450 pixelization = al .Pixelization (
451- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
451+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
452452 regularization = al .reg .Constant (coefficient = 1.0 ),
453453 )
454454
@@ -530,7 +530,7 @@ def test__galaxy_model_image_dict(masked_imaging_7x7):
530530 )
531531
532532 pixelization = al .Pixelization (
533- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
533+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
534534 regularization = al .reg .Constant (coefficient = 1.0 ),
535535 )
536536
@@ -663,7 +663,7 @@ def test__model_images_of_planes_list(masked_imaging_7x7_sub_2):
663663 g1_linear = al .Galaxy (redshift = 0.75 , bulge = al .lp_linear .Sersic ())
664664
665665 pixelization = al .Pixelization (
666- mesh = al .mesh .Rectangular (shape = (3 , 3 )),
666+ mesh = al .mesh .RectangularUniform (shape = (3 , 3 )),
667667 regularization = al .reg .Constant (coefficient = 1.0 ),
668668 )
669669
@@ -806,7 +806,7 @@ def test__total_mappers(masked_imaging_7x7):
806806
807807 assert fit .total_mappers == 0
808808
809- pixelization = al .Pixelization (mesh = al .mesh .Rectangular ())
809+ pixelization = al .Pixelization (mesh = al .mesh .RectangularUniform ())
810810
811811 g2 = al .Galaxy (redshift = 2.0 , pixelization = pixelization )
812812
0 commit comments