Skip to content

Commit 64ccae5

Browse files
vtavanaantonwolfy
andauthored
Update mkl_fft/tests/test_fft1d.py
Co-authored-by: Anton <[email protected]>
1 parent d4429af commit 64ccae5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mkl_fft/tests/test_fft1d.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,5 +465,4 @@ def test_irfft_dtype(dt):
465465
x = np.array(rnd.random((20, 20)), dtype=dt)
466466
result = mkl_fft.irfft(x)
467467
expected = np.fft.irfft(x)
468-
assert result.dtype == expected.dtype
469-
assert_allclose(result, expected, rtol=1e-7, atol=1e-7)
468+
assert_allclose(result, expected, rtol=1e-7, atol=1e-7, strict=True)

0 commit comments

Comments
 (0)