From 2f2aa40b47372f77d0f50b043e53bbde9a57d914 Mon Sep 17 00:00:00 2001 From: Florent Jaillet <florent.jaillet@lis-lab.fr> Date: Tue, 10 Apr 2018 11:42:45 +0200 Subject: [PATCH] Relaxing some tests to avoid failing in MacOS --- ltfatpy/tests/gabor/test_phaselock.py | 4 ++-- ltfatpy/tests/gabor/test_phaseunlock.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ltfatpy/tests/gabor/test_phaselock.py b/ltfatpy/tests/gabor/test_phaselock.py index 71583b4..1f752e8 100644 --- a/ltfatpy/tests/gabor/test_phaselock.py +++ b/ltfatpy/tests/gabor/test_phaselock.py @@ -63,7 +63,7 @@ from __future__ import print_function, division import unittest import numpy as np -from numpy.testing import assert_array_equal, assert_allclose +from numpy.testing import assert_allclose from ltfatpy.gabor.phaselock import phaselock from ltfatpy.gabor.phaseunlock import phaseunlock @@ -107,7 +107,7 @@ class TestPhaselock(unittest.TestCase): out = phaselock(**inputs) msg = ('Wrong output in phaselock with inputs ' + str(inputs)) - assert_array_equal(out, outputs[0], msg) + assert_allclose(out, outputs[0], rtol=1e-15, err_msg=msg) def test_inverse(self): """Check that phaselock and phaseunlock are inverse functions diff --git a/ltfatpy/tests/gabor/test_phaseunlock.py b/ltfatpy/tests/gabor/test_phaseunlock.py index c723a65..5a606dd 100644 --- a/ltfatpy/tests/gabor/test_phaseunlock.py +++ b/ltfatpy/tests/gabor/test_phaseunlock.py @@ -63,7 +63,7 @@ from __future__ import print_function, division import unittest import numpy as np -from numpy.testing import assert_array_equal +from numpy.testing import assert_allclose from ltfatpy.gabor.phaseunlock import phaseunlock from ltfatpy.gabor.dgt import dgt @@ -106,7 +106,7 @@ class TestPhaseunlock(unittest.TestCase): out = phaseunlock(**inputs) msg = ('Wrong output in phaseunlock with inputs ' + str(inputs)) - assert_array_equal(out, outputs[0], msg) + assert_allclose(out, outputs[0], rtol=1e-15, err_msg=msg) if __name__ == '__main__': -- GitLab