summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorNathan Fritz <nathan@andyet.net>2010-07-19 16:25:01 -0700
committerNathan Fritz <nathan@andyet.net>2010-07-19 16:25:01 -0700
commitf74baf1c23af79c6e732fffc7691cba97ee79715 (patch)
tree096441539e02ffb0709afc2592d1b4177e730ab4 /tests
parentb5a14a0190f6ea45bfbc0e18a7ff6c61b6415865 (diff)
downloadslixmpp-f74baf1c23af79c6e732fffc7691cba97ee79715.tar.gz
slixmpp-f74baf1c23af79c6e732fffc7691cba97ee79715.tar.bz2
slixmpp-f74baf1c23af79c6e732fffc7691cba97ee79715.tar.xz
slixmpp-f74baf1c23af79c6e732fffc7691cba97ee79715.zip
updated sleektest to use new stanza get/set values api
Diffstat (limited to 'tests')
-rw-r--r--tests/sleektest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/sleektest.py b/tests/sleektest.py
index 3c270ebd..d7a9d0a8 100644
--- a/tests/sleektest.py
+++ b/tests/sleektest.py
@@ -134,9 +134,9 @@ class SleekTest(unittest.TestCase):
if xml.attrib.get('type', None) is None:
xml.attrib['type'] = 'normal'
- values = msg2.getValues()
+ values = msg2.getStanzaValues()
msg3 = self.Message()
- msg3.setValues(values)
+ msg3.setStanzaValues(values)
debug += "Second Constructed Stanza:\n%s\n" % ET.tostring(msg3.xml)
debug = "Three methods for creating stanza do not match:\n" + debug