aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/samplebinding/point_test.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/samplebinding/point_test.py b/tests/samplebinding/point_test.py
index ae7cac0bb..3b45db4ad 100644
--- a/tests/samplebinding/point_test.py
+++ b/tests/samplebinding/point_test.py
@@ -54,6 +54,7 @@ class PointTest(unittest.TestCase):
self.assertTrue(pt1 == pt1)
self.assertTrue(pt1 == pt2)
self.assertFalse(pt1 == pt3)
+ self.assertFalse(pt1 == object())
def testNotEqualOperator(self):
'''Test Point class != operator.'''