summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorRobert McQueen <robot101@debian.org>2005-11-03 16:13:53 +0000
committerRobert McQueen <robot101@debian.org>2005-11-03 16:13:53 +0000
commit9d0ab378067cd59e12a1ba2671c353e4a8bce356 (patch)
treea4d0c8a99135ed21f13053862d83d88e9cdd4407 /test
parenta4b1aa364258be053d195650de9062b090f125c6 (diff)
2005-11-03 Robert McQueen <robot101@debian.org>
* python/_dbus.py, python/proxies.py, python/service.py: Add __repr__ functions to dbus.Bus, dbus.service.BusName and dbus.service.Object, tweak others to be consistent. * test/python/test-client.py: Tweak output of testInheritance.
Diffstat (limited to 'test')
-rwxr-xr-xtest/python/test-client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/python/test-client.py b/test/python/test-client.py
index e84afcdf..cb753fb8 100755
--- a/test/python/test-client.py
+++ b/test/python/test-client.py
@@ -147,7 +147,7 @@ class TestDBusBindings(unittest.TestCase):
def testInheritance(self):
print "\n********* Testing inheritance from dbus.method.Interface ***********"
ret = self.iface.CheckInheritance()
- print "CheckInheritance returned %s\n", str(ret)
+ print "CheckInheritance returned %s" % ret
self.assert_(ret, "overriding CheckInheritance from TestInterface failed")
class TestDBusPythonToGLibBindings(unittest.TestCase):