diff --git a/ltfatpy/tests/gabor/test_phaselock.py b/ltfatpy/tests/gabor/test_phaselock.py index 71583b424efad7082242aba6587c70084ca8f85d..1f752e8ab718009230ec901a05be96b2c947a02c 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 c723a652b7f16d5dc38eff22f9115656f959222e..5a606dd073336ea600eef17efe8f352049445fba 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__':