aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/reference_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/reference_test.py')
-rwxr-xr-xtests/samplebinding/reference_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/reference_test.py b/tests/samplebinding/reference_test.py
index f00e036e0..0c373ffac 100755
--- a/tests/samplebinding/reference_test.py
+++ b/tests/samplebinding/reference_test.py
@@ -64,7 +64,7 @@ class ReferenceTest(unittest.TestCase):
def testCantSegFaultWhenReceiveNone(self):
'''do not segfault when receiving None as argument.'''
s = Str()
- self.assertEqual(None, s)
+ self.assertNotEqual(None, s)
def testMethodThatReceivesConstReference(self):
'''Test a method that receives a const reference to an object as argument.'''