summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_mixed.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/f2py/tests/test_mixed.py')
-rw-r--r--numpy/f2py/tests/test_mixed.py6
1 files changed, 3 insertions, 3 deletions
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