summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/samplebinding/class_fields_test.py2
-rw-r--r--tests/samplebinding/point_test.py2
2 files changed, 2 insertions, 2 deletions
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.'''