summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-10-09 12:25:05 -0400
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2013-10-09 12:25:05 -0400
commitdc57fdd1aeb39946e56aa7266da75a133706bed6 (patch)
tree14291bf67c436da84cb1ff1166914029e7c718e3
parent9d27f8cc2127823c0084d8c221a5e6874a638b2c (diff)
servicetest: new interface on conn/channel wrappers
From Gabble.
-rw-r--r--tests/twisted/servicetest.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/twisted/servicetest.py b/tests/twisted/servicetest.py
index 134f8a1f..fc86b91f 100644
--- a/tests/twisted/servicetest.py
+++ b/tests/twisted/servicetest.py
@@ -638,13 +638,16 @@ def wrap_connection(conn):
('MailNotification', cs.CONN_IFACE_MAIL_NOTIFICATION),
('ContactList', cs.CONN_IFACE_CONTACT_LIST),
('ContactGroups', cs.CONN_IFACE_CONTACT_GROUPS),
+ ('ContactBlocking', cs.CONN_IFACE_CONTACT_BLOCKING),
('PowerSaving', cs.CONN_IFACE_POWER_SAVING),
('Addressing', cs.CONN_IFACE_ADDRESSING),
+ ('ClientTypes', cs.CONN_IFACE_CLIENT_TYPES),
]))
def wrap_channel(chan, type_, extra=None):
interfaces = {
type_: tp_name_prefix + '.Channel.Type.' + type_,
+ 'Channe': cs.CHANNEL,
'Group': cs.CHANNEL_IFACE_GROUP,
}