summaryrefslogtreecommitdiff
path: root/itests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2021-04-20 19:08:46 +0200
committermathieui <mathieui@mathieui.net>2021-04-20 19:08:46 +0200
commit3630c3d1ccaad8aa668d86d96dd58555d1b25556 (patch)
tree36315b1f64ccffce606bdd64d22457b25c6d909b /itests
parent7f0febb929b0db51f300a2986be98af3ff32ca79 (diff)
parent41fc6a2e6b29927148d2af7ed33d1f1645a31bf4 (diff)
downloadslixmpp-3630c3d1ccaad8aa668d86d96dd58555d1b25556.tar.gz
slixmpp-3630c3d1ccaad8aa668d86d96dd58555d1b25556.tar.bz2
slixmpp-3630c3d1ccaad8aa668d86d96dd58555d1b25556.tar.xz
slixmpp-3630c3d1ccaad8aa668d86d96dd58555d1b25556.zip
Merge branch 'caps-broadcast-presence' into 'master'
Caps: do not broadcast presence on PEP plugin load/unload See merge request poezio/slixmpp!157
Diffstat (limited to 'itests')
-rw-r--r--itests/test_user_avatar.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/itests/test_user_avatar.py b/itests/test_user_avatar.py
index 193bbe72..988225bb 100644
--- a/itests/test_user_avatar.py
+++ b/itests/test_user_avatar.py
@@ -11,9 +11,12 @@ class TestUserAvatar(SlixIntegration):
self.envjid('CI_ACCOUNT1'),
self.envstr('CI_ACCOUNT1_PASSWORD'),
)
- self.register_plugins(['xep_0084'])
+ self.register_plugins(['xep_0084', 'xep_0115'])
self.data = b'coucou coucou'
await self.connect_clients()
+ await asyncio.gather(
+ self.clients[0]['xep_0115'].update_caps(),
+ )
async def _clear_avatar(self):
"""Utility for purging remote state"""