diff options
author | Lance Stout <lancestout@gmail.com> | 2011-01-05 16:53:33 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-01-05 16:53:33 -0500 |
commit | c156a4f723073e1e6394803b5bb1613227947266 (patch) | |
tree | 1f7aaf623e4cdca994969282fb7468fa85712d37 /tests | |
parent | 3657bf66363844bf7351ea84279eeb74b0449d5f (diff) | |
parent | 8b29431cdeff5647208e3eab108bba9e9c8318fc (diff) | |
download | slixmpp-c156a4f723073e1e6394803b5bb1613227947266.tar.gz slixmpp-c156a4f723073e1e6394803b5bb1613227947266.tar.bz2 slixmpp-c156a4f723073e1e6394803b5bb1613227947266.tar.xz slixmpp-c156a4f723073e1e6394803b5bb1613227947266.zip |
Merge branch 'develop' into roster
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_stream_xep_0030.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/test_stream_xep_0030.py b/tests/test_stream_xep_0030.py index 1f989745..25a41027 100644 --- a/tests/test_stream_xep_0030.py +++ b/tests/test_stream_xep_0030.py @@ -406,10 +406,10 @@ class TestStreamDisco(SleekTest): self.xmpp['xep_0030'].make_static(jid='tester@localhost', node='testing') - self.xmpp['xep_0030'].add_item(jid='tester@localhost', + self.xmpp['xep_0030'].add_item(ijid='tester@localhost', node='testing', - ijid='tester@localhost', - inode='foo', + jid='tester@localhost', + subnode='foo', name='Test') self.recv(""" @@ -446,10 +446,10 @@ class TestStreamDisco(SleekTest): self.xmpp['xep_0030'].make_static(jid='user@tester.localhost', node='testing') - self.xmpp['xep_0030'].add_item(jid='user@tester.localhost', + self.xmpp['xep_0030'].add_item(ijid='user@tester.localhost', node='testing', - ijid='user@tester.localhost', - inode='foo', + jid='user@tester.localhost', + subnode='foo', name='Test') self.recv(""" |