Skip to content

Commit 2b05835

Browse files
committed
make sure test_s_none_vs_s_full actually uses iter_complementary
1 parent c56754e commit 2b05835

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
@@ -266,10 +266,10 @@ def test_s_axes_out(dtype, s, axes, func):
266266

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

0 commit comments

Comments
 (0)