Skip to content

Commit 4baa3b0

Browse files
committed
Remove duplicate test.
1 parent 5acbd35 commit 4baa3b0

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

ndcube/tests/test_ndcube_arithmetic.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import astropy.units as u
55
import astropy.wcs
6-
import dask.array
76
from astropy.nddata import NDData, StdDevUncertainty
87

98
from ndcube import NDCube
@@ -369,16 +368,6 @@ def test_cube_arithmetic_divide_nddata(ndc, value, expected_kwargs, wcs_2d_lt_ln
369368
assert_cubes_equal(output_cube, expected_cube, check_uncertainty_values=True)
370369

371370

372-
@pytest.mark.parametrize("value",
373-
[
374-
NDData(np.ones((8, 4)) * 2, wcs=None)
375-
])
376-
def test_cube_dask_arithmetic_divide_nddata(ndcube_2d_dask, value):
377-
ndc = ndcube_2d_dask
378-
output_cube = ndc / value
379-
assert type(output_cube.data) is type(ndc.data)
380-
381-
382371
def test_cube_dask_arithmetic_divide_nddata(ndcube_2d_dask):
383372
ndc = ndcube_2d_dask
384373
value = NDData(np.ones(ndc.data.shape), wcs=None, unit=ndc.unit)

0 commit comments

Comments
 (0)