summaryrefslogtreecommitdiff
path: root/tests/twisted/messages/long-message-split.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/twisted/messages/long-message-split.py')
-rw-r--r--tests/twisted/messages/long-message-split.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/twisted/messages/long-message-split.py b/tests/twisted/messages/long-message-split.py
index 88c11aa..fc8ce87 100644
--- a/tests/twisted/messages/long-message-split.py
+++ b/tests/twisted/messages/long-message-split.py
@@ -35,11 +35,12 @@ def test(q, bus, conn, stream):
conn.Connect()
q.expect('dbus-signal', signal='StatusChanged', args=[0, 1])
CHANNEL_NAME = '#idletest'
- room_handles = conn.RequestHandles(HT_ROOM, [CHANNEL_NAME])
- call_async(q, conn, 'RequestChannel', CHANNEL_TYPE_TEXT, HT_ROOM,
- room_handles[0], True)
+ call_async(q, conn.Requests, 'CreateChannel',
+ { CHANNEL_TYPE: CHANNEL_TYPE_TEXT,
+ TARGET_HANDLE_TYPE: HT_ROOM,
+ TARGET_ID: CHANNEL_NAME })
- ret = q.expect('dbus-return', method='RequestChannel')
+ ret = q.expect('dbus-return', method='CreateChannel')
q.expect('dbus-signal', signal='MembersChanged')
chan = bus.get_object(conn.bus_name, ret.value[0])