diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-10-10 15:35:35 -0400 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2013-10-11 17:55:06 -0400 |
commit | c47078c72d7525749e563b113192bce69345e2e1 (patch) | |
tree | 8c60e3141e4f9ce9906380c2cf46747c98ccb81a | |
parent | 102af3144c6bb66a49021acfa2b1e99e872df82a (diff) |
stop checking for TP properties
-rw-r--r-- | tests/twisted/muc/test-muc-ownership.py | 2 | ||||
-rw-r--r-- | tests/twisted/muc/test-muc.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/twisted/muc/test-muc-ownership.py b/tests/twisted/muc/test-muc-ownership.py index 7de9e9b0a..9ac2c84cd 100644 --- a/tests/twisted/muc/test-muc-ownership.py +++ b/tests/twisted/muc/test-muc-ownership.py @@ -98,7 +98,7 @@ def test(q, bus, conn, stream): assert all[u'HandleOwners'] == expected_owners, all flags = all[u'GroupFlags'] - assertFlagsSet(cs.GF_PROPERTIES | cs.GF_CHANNEL_SPECIFIC_HANDLES, flags) + assertFlagsSet(cs.GF_CHANNEL_SPECIFIC_HANDLES, flags) assertFlagsUnset(cs.GF_HANDLE_OWNERS_NOT_AVAILABLE, flags) if __name__ == '__main__': diff --git a/tests/twisted/muc/test-muc.py b/tests/twisted/muc/test-muc.py index c0b12c5b5..8daedb251 100644 --- a/tests/twisted/muc/test-muc.py +++ b/tests/twisted/muc/test-muc.py @@ -30,7 +30,6 @@ def test(q, bus, conn, stream): interfaces = channel_props.get('Interfaces') assertContains(cs.CHANNEL_IFACE_GROUP, interfaces) assertContains(cs.CHANNEL_IFACE_PASSWORD, interfaces) - assertDoesNotContain(cs.TP_AWKWARD_PROPERTIES, interfaces) assertContains(cs.CHANNEL_IFACE_CHAT_STATE, interfaces) assertContains(cs.CHANNEL_IFACE_MESSAGES, interfaces) |