Skip to content

Commit ac92374

Browse files
committed
make sure test_s_none_vs_s_full actually uses iter_complementary
1 parent d761e90 commit ac92374

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

mkl_fft/tests/test_fftnd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ def test_s_axes_out(dtype, s, axes, func):
267267

268268
@requires_numpy_2
269269
@pytest.mark.parametrize("dtype", [complex, float])
270-
@pytest.mark.parametrize("axes", [(0, 1, 2), (-1, -2, -3), [1, 0, 2]])
270+
@pytest.mark.parametrize("axes", [(1, 2, 3), (-1, -2, -3), [2, 1, 3]])
271271
@pytest.mark.parametrize("func", ["fftn", "ifftn", "rfftn"])
272272
def test_s_none_vs_s_full(dtype, axes, func):
273-
shape = (30, 20, 10)
273+
shape = (2, 30, 20, 10)
274274
if dtype is complex and func != "rfftn":
275275
x = np.random.random(shape) + 1j * np.random.random(shape)
276276
else:

0 commit comments

Comments
 (0)