diff options
author | Nicolas Cedilnik <nicolas.cedilnik@inheart.fr> | 2022-06-09 16:45:36 +0200 |
---|---|---|
committer | Nicolas Cedilnik <nicolas.cedilnik@inheart.fr> | 2022-06-09 16:45:36 +0200 |
commit | a1a5f3984dbb44163d3b107d502e010793b56cff (patch) | |
tree | 246d7694c0e8b0a1094940bbc732cec4636609bb /tests | |
parent | 5ceb48bbcd842962f8b8d206fddbce1dcfe7c069 (diff) | |
download | slixmpp-a1a5f3984dbb44163d3b107d502e010793b56cff.tar.gz slixmpp-a1a5f3984dbb44163d3b107d502e010793b56cff.tar.bz2 slixmpp-a1a5f3984dbb44163d3b107d502e010793b56cff.tar.xz slixmpp-a1a5f3984dbb44163d3b107d502e010793b56cff.zip |
XEP-0356: namespace version bump
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_stanza_xep_0356.py | 2 | ||||
-rw-r--r-- | tests/test_stream_xep_0356.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_stanza_xep_0356.py b/tests/test_stanza_xep_0356.py index ef116db2..cf14ccba 100644 --- a/tests/test_stanza_xep_0356.py +++ b/tests/test_stanza_xep_0356.py @@ -13,7 +13,7 @@ class TestPermissions(SlixTest): def testAdvertisePermission(self): xmlstring = """ <message from='capulet.net' to='pubub.capulet.lit'> - <privilege xmlns='urn:xmpp:privilege:1'> + <privilege xmlns='urn:xmpp:privilege:2'> <perm access='roster' type='both'/> <perm access='message' type='outgoing'/> <perm access='presence' type='managed_entity'/> diff --git a/tests/test_stream_xep_0356.py b/tests/test_stream_xep_0356.py index 2949daad..e2ce9569 100644 --- a/tests/test_stream_xep_0356.py +++ b/tests/test_stream_xep_0356.py @@ -31,7 +31,7 @@ class TestPermissions(SlixTest): self.recv( """ <message from='capulet.net' to='pubub.capulet.lit' id='54321'> - <privilege xmlns='urn:xmpp:privilege:1'> + <privilege xmlns='urn:xmpp:privilege:2'> <perm access='roster' type='both'/> <perm access='message' type='outgoing'/> </privilege> @@ -95,7 +95,7 @@ class TestPermissions(SlixTest): def testMakeOutgoingMessage(self): xmlstring = """ <message xmlns="jabber:component:accept" from='pubsub.capulet.lit' to='capulet.net'> - <privilege xmlns='urn:xmpp:privilege:1'> + <privilege xmlns='urn:xmpp:privilege:2'> <forwarded xmlns='urn:xmpp:forward:0'> <message from="juliet@capulet.lit" to="romeo@montague.lit" xmlns="jabber:client"> <body>I do not hate you</body> |