From f8c38cb088c9478416f5c99ade68342dcb3db985 Mon Sep 17 00:00:00 2001 From: Pearu Peterson Date: Fri, 11 Mar 2011 14:00:10 +0200 Subject: BUG: Fixed ticket #1767. Replaced assert with assert_ calls. --- numpy/f2py/tests/test_mixed.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'numpy/f2py/tests/test_mixed.py') diff --git a/numpy/f2py/tests/test_mixed.py b/numpy/f2py/tests/test_mixed.py index e7a64c080..a8a14ca4b 100644 --- a/numpy/f2py/tests/test_mixed.py +++ b/numpy/f2py/tests/test_mixed.py @@ -16,9 +16,9 @@ class TestMixed(util.F2PyTest): @dec.slow def test_all(self): - assert self.module.bar11() == 11 - assert self.module.foo_fixed.bar12() == 12 - assert self.module.foo_free.bar13() == 13 + assert_( self.module.bar11() == 11) + assert_( self.module.foo_fixed.bar12() == 12) + assert_( self.module.foo_free.bar13() == 13) if __name__ == "__main__": import nose -- cgit v1.2.1