aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/point_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/point_test.py')
-rw-r--r--tests/samplebinding/point_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/point_test.py b/tests/samplebinding/point_test.py
index a461703f2..d1ae3eed9 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.'''