aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-11-27 17:52:06 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-11-27 18:11:12 -0300
commit62de488a772ad9369887fcb4482df149b7c49b94 (patch)
tree968b836d90af990ae45cba3cabf5489eaa7b5dfd /tests
parentf0b311979e924fe17d0212613692fa95649c5b8d (diff)
Fix identation of generated code for C++ wrapper destructor.
Reviewed by Luciano Wolf <luciano.wolf@openbossa.org>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/samplebinding/ownership_delete_child_in_cpp_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/samplebinding/ownership_delete_child_in_cpp_test.py b/tests/samplebinding/ownership_delete_child_in_cpp_test.py
index 90ef2caff..3b943c619 100755
--- a/tests/samplebinding/ownership_delete_child_in_cpp_test.py
+++ b/tests/samplebinding/ownership_delete_child_in_cpp_test.py
@@ -42,7 +42,7 @@ class DeleteChildInPython(unittest.TestCase):
child.setObjectName('child')
parent.killChild('child')
- parent.assertRaises(RuntimeError, child.objectName)
+ self.assertRaises(RuntimeError, child.objectName)
self.assertEqual(parent.objectName(), 'parent')
if __name__ == '__main__':