Skip to content

Commit 7979d3c

Browse files
Jammy2211Jammy2211
authored andcommitted
black
1 parent 3cf259f commit 7979d3c

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

test_autoarray/dataset/interferometer/test_dataset.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ def test__different_interferometer_without_mock_objects__customize_constructor_i
152152

153153

154154
def test__curvature_preload_metadata_from(
155-
visibilities_7,
156-
visibilities_noise_map_7,
157-
uv_wavelengths_7x2,
158-
mask_2d_7x7,
155+
visibilities_7,
156+
visibilities_noise_map_7,
157+
uv_wavelengths_7x2,
158+
mask_2d_7x7,
159159
):
160160

161161
dataset = aa.Interferometer(
@@ -175,8 +175,7 @@ def test__curvature_preload_metadata_from(
175175
)
176176

177177
curvature_preload = aa.load_curvature_preload_if_compatible(
178-
file=file,
179-
real_space_mask=dataset.real_space_mask
178+
file=file, real_space_mask=dataset.real_space_mask
180179
)
181180

182181
real_space_mask_changed = np.array(
@@ -191,12 +190,12 @@ def test__curvature_preload_metadata_from(
191190
]
192191
)
193192

194-
real_space_mask_changed = aa.Mask2D(mask=real_space_mask_changed, pixel_scales=(1.0, 1.0))
193+
real_space_mask_changed = aa.Mask2D(
194+
mask=real_space_mask_changed, pixel_scales=(1.0, 1.0)
195+
)
195196

196197
with pytest.raises(ValueError):
197198

198199
curvature_preload = aa.load_curvature_preload_if_compatible(
199-
file=file,
200-
real_space_mask=real_space_mask_changed
200+
file=file, real_space_mask=real_space_mask_changed
201201
)
202-

0 commit comments

Comments
 (0)