diff options
author | Lance Stout <lancestout@gmail.com> | 2011-03-24 13:15:09 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-03-24 13:15:09 -0400 |
commit | f125c11a810cf308473394262879f94166c3f564 (patch) | |
tree | 313a8b6c84bc637640efd8545ae6f4d09c19637c /tests/test_stream_exceptions.py | |
parent | bf2f2782b7b64be97948f56e21d55b969072c4dc (diff) | |
parent | d94811d81d68d948155d42ff9096c23ccb90a73c (diff) | |
download | slixmpp-f125c11a810cf308473394262879f94166c3f564.tar.gz slixmpp-f125c11a810cf308473394262879f94166c3f564.tar.bz2 slixmpp-f125c11a810cf308473394262879f94166c3f564.tar.xz slixmpp-f125c11a810cf308473394262879f94166c3f564.zip |
Merge branch 'develop' into stream_features
Diffstat (limited to 'tests/test_stream_exceptions.py')
-rw-r--r-- | tests/test_stream_exceptions.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/test_stream_exceptions.py b/tests/test_stream_exceptions.py index a4598a10..bc01c2a7 100644 --- a/tests/test_stream_exceptions.py +++ b/tests/test_stream_exceptions.py @@ -37,7 +37,7 @@ class TestStreamExceptions(SleekTest): self.send(""" <message type="error"> - <error type="cancel"> + <error type="cancel" code="501"> <feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> @@ -73,7 +73,7 @@ class TestStreamExceptions(SleekTest): self.send(""" <iq type="error" id="0"> <query xmlns="test" /> - <error type="cancel"> + <error type="cancel" code="501"> <feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> @@ -103,7 +103,7 @@ class TestStreamExceptions(SleekTest): self.send(""" <message type="error"> - <error type="cancel"> + <error type="cancel" code="501"> <feature-not-implemented xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> @@ -137,7 +137,7 @@ class TestStreamExceptions(SleekTest): self.send(""" <message type="error"> - <error type="cancel"> + <error type="cancel" code="500"> <undefined-condition xmlns="urn:ietf:params:xml:ns:xmpp-stanzas" /> <text xmlns="urn:ietf:params:xml:ns:xmpp-stanzas"> |