summary refs log tree commit diff
path: root/pkgs/development/python-modules/cython_test.patch
blob: 5b1cece3aa50880697367286a6f8ce48b770afb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/tests/run/numpy_math.pyx b/tests/run/numpy_math.pyx
index eafd23a..4a15522 100644
--- a/tests/run/numpy_math.pyx
+++ b/tests/run/numpy_math.pyx
@@ -37,8 +37,8 @@ def test_fp_classif():
     assert not npmath.isnan(d_zero)
     assert not npmath.isnan(f_zero)
 
-    assert npmath.isinf(npmath.INFINITY) == 1
-    assert npmath.isinf(-npmath.INFINITY) == -1
+    assert npmath.isinf(npmath.INFINITY) != 0
+    assert npmath.isinf(-npmath.INFINITY) != 0
     assert npmath.isnan(npmath.NAN)
 
     assert npmath.signbit(npmath.copysign(1., -1.))