diff options
-rw-r--r-- | numpy/core/tests/test_ufunc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/tests/test_ufunc.py b/numpy/core/tests/test_ufunc.py index a7a41dfe2..070ae42f2 100644 --- a/numpy/core/tests/test_ufunc.py +++ b/numpy/core/tests/test_ufunc.py @@ -119,7 +119,7 @@ class TestUfunc(TestCase): assert_almost_equal(ftwo(x,x), ftwo_val, err_msg=msg) # class to use in testing object method loops - class foo : + class foo(object): def logical_not(self) : return np.bool_(1) def logical_and(self, obj) : |