diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2010-02-21 03:51:48 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2010-02-21 03:51:48 +0000 |
commit | 3bc5ce3e5bfe8599f81a9970a61b5e401629514c (patch) | |
tree | ba0245fde48b25437d952a3152ab1dc1c599ce13 /numpy/linalg/tests/test_build.py | |
parent | bc01dee3df3a46e9c032ee55749f3aa5343a9531 (diff) | |
download | numpy-3bc5ce3e5bfe8599f81a9970a61b5e401629514c.tar.gz |
DEP: Fix one more deprecated unittest function.
Diffstat (limited to 'numpy/linalg/tests/test_build.py')
-rw-r--r-- | numpy/linalg/tests/test_build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/tests/test_build.py b/numpy/linalg/tests/test_build.py index bf1ff3a9f..6b6c24d61 100644 --- a/numpy/linalg/tests/test_build.py +++ b/numpy/linalg/tests/test_build.py @@ -44,7 +44,7 @@ class TestF77Mismatch(TestCase): f = FindDependenciesLdd() deps = f.grep_dependencies(lapack_lite.__file__, asbytes_nested(['libg2c', 'libgfortran'])) - self.failIf(len(deps) > 1, + self.assertFalse(len(deps) > 1, """Both g77 and gfortran runtimes linked in lapack_lite ! This is likely to cause random crashes and wrong results. See numpy INSTALL.txt for more information.""") |