diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-20 15:58:29 +0900 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-09-20 16:23:02 +0900 |
commit | 7cd1cf32ae698965ed488ade17f63afd7d5afedf (patch) | |
tree | 45929eae4ee52b901167596b8d3117871f3ff67f /tests/test_stream_xep_0030.py | |
parent | d099e353a4e2804a58153937719259518ab8439e (diff) | |
download | slixmpp-7cd1cf32ae698965ed488ade17f63afd7d5afedf.tar.gz slixmpp-7cd1cf32ae698965ed488ade17f63afd7d5afedf.tar.bz2 slixmpp-7cd1cf32ae698965ed488ade17f63afd7d5afedf.tar.xz slixmpp-7cd1cf32ae698965ed488ade17f63afd7d5afedf.zip |
Various XEPs: Remove deprecated aliases.
Diffstat (limited to 'tests/test_stream_xep_0030.py')
-rw-r--r-- | tests/test_stream_xep_0030.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tests/test_stream_xep_0030.py b/tests/test_stream_xep_0030.py index de0bd414..1d6337d5 100644 --- a/tests/test_stream_xep_0030.py +++ b/tests/test_stream_xep_0030.py @@ -205,8 +205,8 @@ class TestStreamDisco(SlixTest): handler=dynamic_jid) - self.xmpp['xep_0030'].make_static(jid='tester@localhost', - node='testing') + self.xmpp['xep_0030'].restore_defaults(jid='tester@localhost', + node='testing') self.xmpp['xep_0030'].add_identity(jid='tester@localhost', node='testing', @@ -245,8 +245,8 @@ class TestStreamDisco(SlixTest): self.xmpp['xep_0030'].set_node_handler('get_info', handler=dynamic_global) - self.xmpp['xep_0030'].make_static(jid='user@tester.localhost', - node='testing') + self.xmpp['xep_0030'].restore_defaults(jid='user@tester.localhost', + node='testing') self.xmpp['xep_0030'].add_feature(jid='user@tester.localhost', node='testing', @@ -396,8 +396,8 @@ class TestStreamDisco(SlixTest): handler=dynamic_jid) - self.xmpp['xep_0030'].make_static(jid='tester@localhost', - node='testing') + self.xmpp['xep_0030'].restore_defaults(jid='tester@localhost', + node='testing') self.xmpp['xep_0030'].add_item(ijid='tester@localhost', node='testing', @@ -436,8 +436,8 @@ class TestStreamDisco(SlixTest): self.xmpp['xep_0030'].set_node_handler('get_items', handler=dynamic_global) - self.xmpp['xep_0030'].make_static(jid='user@tester.localhost', - node='testing') + self.xmpp['xep_0030'].restore_defaults(jid='user@tester.localhost', + node='testing') self.xmpp['xep_0030'].add_item(ijid='user@tester.localhost', node='testing', |