aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/weakref_test.py
diff options
context:
space:
mode:
authorRenato Filho <renato.filho@openbossa.org>2011-09-28 17:55:54 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:18:18 -0300
commitb9ab302dd7aff3ecbbbc7ffe1ef2ef0bf4956a5a (patch)
treeb2c62e3ae790b7c5a70f7308282ec2975aa168a2 /tests/samplebinding/weakref_test.py
parent6b21c2fa5eeb6a7c7b6533f1c966a47d8ef07e69 (diff)
Fixed tests to work with python3.x and python2.x
Diffstat (limited to 'tests/samplebinding/weakref_test.py')
-rw-r--r--tests/samplebinding/weakref_test.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/samplebinding/weakref_test.py b/tests/samplebinding/weakref_test.py
index 390252d46..a4ea9e66e 100644
--- a/tests/samplebinding/weakref_test.py
+++ b/tests/samplebinding/weakref_test.py
@@ -51,7 +51,6 @@ class WeakrefBasicTest(unittest.TestCase):
def testPrivateDtor(self):
'''PrivateDtor weakref'''
obj = PrivateDtor.instance()
- print obj
ref = weakref.ref(obj, self.cb)
del obj
self.assert_(self.called)