diff options
author | carlkl <cmkleffner@gmail.com> | 2015-02-20 01:11:02 +0100 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-02-27 08:41:11 -0700 |
commit | ae438c3707ccb451c6f0d8150388f9d75a9b5375 (patch) | |
tree | c482c1474a0edc7d1bd1811ce7971a03b1b1a6f7 /numpy/lib/tests/test_function_base.py | |
parent | 06af9918f6bf03b8d818ec834f9fb48db57d1489 (diff) | |
download | numpy-ae438c3707ccb451c6f0d8150388f9d75a9b5375.tar.gz |
BLD: Add mingw-w64 support for the mingw64static option.
Diffstat (limited to 'numpy/lib/tests/test_function_base.py')
-rw-r--r-- | numpy/lib/tests/test_function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/tests/test_function_base.py b/numpy/lib/tests/test_function_base.py index 03521ca4c..a37c527d9 100644 --- a/numpy/lib/tests/test_function_base.py +++ b/numpy/lib/tests/test_function_base.py @@ -668,7 +668,7 @@ class TestVectorize(TestCase): args = np.array([0, 0.5*np.pi, np.pi, 1.5*np.pi, 2*np.pi]) r1 = f(args) r2 = np.cos(args) - assert_array_equal(r1, r2) + assert_array_almost_equal(r1, r2) def test_keywords(self): import math |