diff options
author | Robert McQueen <robot101@debian.org> | 2005-11-27 16:40:57 +0000 |
---|---|---|
committer | Robert McQueen <robot101@debian.org> | 2005-11-27 16:40:57 +0000 |
commit | c77c7e343b73bb9c14319679063a55e5cf1ee1d6 (patch) | |
tree | 4db3c1b4c48d49bdb528560072cbbaa5004b22d6 /test/python/test-client.py | |
parent | caecde624d877cc09fd69f0cb27e39ace6524b9b (diff) |
2005-11-27 Robert McQueen <robot101@debian.org>
* python/dbus_bindings.pyx: Fix a bug where doing a strict append
with type v of an instance of dbus.Variant(foo, type='x') caused
it to be boxed twice before sending over the bus.
* python/dbus_bindings.pyx, python/service.py,
test/python/test-client.py: Update the constants for the new
request_name flags, and update comments/test cases now that queueing
is the default action.
Diffstat (limited to 'test/python/test-client.py')
-rwxr-xr-x | test/python/test-client.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/python/test-client.py b/test/python/test-client.py index e972f446..23000400 100755 --- a/test/python/test-client.py +++ b/test/python/test-client.py @@ -227,8 +227,9 @@ class TestDBusBindings(unittest.TestCase): print '\n******** Testing BusName creation ********' test = [('org.freedesktop.DBus.Python.TestName', True), ('org.freedesktop.DBus.Python.TestName', True), - ('org.freedesktop.DBus.Python.InvalidName&^*%$', False), - ('org.freedesktop.DBus.TestSuitePythonService', False)] + ('org.freedesktop.DBus.Python.InvalidName&^*%$', False)] + # Do some more intelligent handling/testing of queueing vs success? + # ('org.freedesktop.DBus.TestSuitePythonService', False)] # For some reason this actually succeeds # ('org.freedesktop.DBus', False)] |