summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--numpy/testing/tests/test_utils.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/numpy/testing/tests/test_utils.py b/numpy/testing/tests/test_utils.py
index c32afbf3a..88439bff2 100644
--- a/numpy/testing/tests/test_utils.py
+++ b/numpy/testing/tests/test_utils.py
@@ -263,21 +263,22 @@ class TestEqual(TestArrayEqual):
self._assert_func(x, x)
self._test_not_equal(x, y)
- @dec.knownfailureif(sys.version_info < (3, 0),
- msg="Error message different on Python 2")
def test_error_message(self):
try:
self._assert_func(np.array([1, 2]), np.matrix([1, 2]))
except AssertionError as e:
- self.assertEqual(
- str(e),
- "\nArrays are not equal\n\n"
+ msg = str(e)
+ msg2 = msg.replace("shapes (2,), (1, 2)", "shapes (2L,), (1L, 2L)")
+ msg_reference = "\nArrays are not equal\n\n"
"(shapes (2,), (1, 2) mismatch)\n"
" x: array([1, 2])\n"
" y: [repr failed for <matrix>: The truth value of an array "
"with more than one element is ambiguous. Use a.any() or "
- "a.all()]")
-
+ "a.all()]"
+ try:
+ self.assertEqual(msg, msg_reference)
+ except AssertionError:
+ self.assertEqual(msg2, msg_reference)
class TestArrayAlmostEqual(_GenericTest, unittest.TestCase):