summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-20 15:02:08 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-09-23 14:02:11 +0200
commitd123405f950dd455ffba156ac8ff7740293b7316 (patch)
treede808a4520b6ced4116a669425459b3bfb95561d
parent060ed8feb39c8194015c1b5085e559b7865ba23b (diff)
downloadtelepathy-idle-d123405f950dd455ffba156ac8ff7740293b7316.tar.gz
Destroyable is now versioned
-rw-r--r--tests/twisted/channels/muc-destroy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/twisted/channels/muc-destroy.py b/tests/twisted/channels/muc-destroy.py
index 6632463..d29fa4a 100644
--- a/tests/twisted/channels/muc-destroy.py
+++ b/tests/twisted/channels/muc-destroy.py
@@ -17,7 +17,7 @@ def join(q, bus, conn):
event = q.expect('dbus-return', method='CreateChannel')
path, props = event.value
return wrap_channel(bus.get_object(conn.bus_name, path), 'Text',
- ['Destroyable', 'Messages'])
+ ['Destroyable1'])
def test(q, bus, conn, stream):
conn.Connect()
@@ -30,7 +30,7 @@ def test(q, bus, conn, stream):
q.expect('dbus-signal', signal='MessageReceived')
# Without acking the message, destroy the channel.
- call_async(q, chan.Destroyable, "Destroy")
+ call_async(q, chan.Destroyable1, "Destroy")
q.expect_many(
EventPattern('stream-PART'),
EventPattern('dbus-signal', signal='Closed', path=chan.object_path),