From 83c2720bcaf235927a04a12d82b7c0a70711316d Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Tue, 3 Aug 2010 12:05:04 -0300 Subject: Modified tests using Point and assertNotEqual to use assert_(not a == b). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is due to Point intentionally not having a != operator and assertNotEqual implementation using the __ne__ operator on Python 2.7. Reviewed by Luciano Wolf Reviewed by Renato Araújo --- tests/samplebinding/class_fields_test.py | 2 +- tests/samplebinding/point_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/samplebinding/class_fields_test.py b/tests/samplebinding/class_fields_test.py index 576e8d62..f0791e1d 100644 --- a/tests/samplebinding/class_fields_test.py +++ b/tests/samplebinding/class_fields_test.py @@ -64,7 +64,7 @@ class TestAccessingCppFields(unittest.TestCase): new_value = Point(-10, 537) d.valueTypeField = new_value self.assertEqual(d.valueTypeField, new_value) - self.assertNotEqual(d.valueTypeField, old_value) + self.assert_(not d.valueTypeField == old_value) # attribution with invalid type self.assertRaises(TypeError, lambda : setattr(d, 'valueTypeField', 123)) diff --git a/tests/samplebinding/point_test.py b/tests/samplebinding/point_test.py index a461703f..d1ae3eed 100644 --- a/tests/samplebinding/point_test.py +++ b/tests/samplebinding/point_test.py @@ -67,7 +67,7 @@ class PointTest(unittest.TestCase): pt2 = pt1.copy() self.assertEqual(pt1, pt2) pt2 += pt1 - self.assertNotEqual(pt1, pt2) + self.assert_(not pt1 == pt2) def testReturnConstPointer(self): '''Point returns a const pointer for itself.''' -- cgit