diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-11-16 11:24:10 +0000 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-11-16 11:25:48 +0000 |
commit | 65c8b8f3edb446e3a0411a7401d9e3947ba858db (patch) | |
tree | b7256304e684173d47ef8a23b406c67dc9672501 | |
parent | 9f8e0db4ba039eb78d055a0c04bb8fb283c89751 (diff) |
jingle outgoing test: add MembersChangedDetailed flag to base flags
telepathy-glib ≥ 0.16.2 always sets the Members_Changed_Detailed flag
in the group mixin, so now that we depend on tp-glib ≥ 0.17.1 we
should expect that too.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | tests/twisted/jingle/outgoing-basics.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/twisted/jingle/outgoing-basics.py b/tests/twisted/jingle/outgoing-basics.py index 15bf6eb77..04ff1f8d7 100644 --- a/tests/twisted/jingle/outgoing-basics.py +++ b/tests/twisted/jingle/outgoing-basics.py @@ -144,7 +144,7 @@ def worker(jp, q, bus, conn, stream, variant, peer): # but we should be allowed to add the peer. chan.Group.AddMembers([remote_handle], 'I love backwards compat') - base_flags = cs.GF_PROPERTIES | cs.GF_MESSAGE_REMOVE \ + base_flags = cs.GF_MEMBERS_CHANGED_DETAILED | cs.GF_PROPERTIES | cs.GF_MESSAGE_REMOVE \ | cs.GF_MESSAGE_REJECT | cs.GF_MESSAGE_RESCIND if variant == REQUEST_ANONYMOUS_AND_ADD or variant == REQUEST_ANONYMOUS: |