summaryrefslogtreecommitdiff
path: root/numpy/f2py/tests/test_mixed.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2011-03-11 14:00:10 +0200
committerPearu Peterson <pearu.peterson@gmail.com>2011-03-11 14:02:13 +0200
commitf8c38cb088c9478416f5c99ade68342dcb3db985 (patch)
treebd16972c7944dbfad41ec18aef9421c1ab98d284 /numpy/f2py/tests/test_mixed.py
parent61a54aa1983ec37c49d628ec5e39a6b2cb06a575 (diff)
downloadnumpy-f8c38cb088c9478416f5c99ade68342dcb3db985.tar.gz
BUG: Fixed ticket #1767. Replaced assert with assert_ calls.
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