diff options
author | Lance Stout <lancestout@gmail.com> | 2010-08-03 17:58:18 -0400 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2010-08-03 17:58:18 -0400 |
commit | 183a3f1b87a8f5a6c4e174dec6de513a0bb5cb83 (patch) | |
tree | 501fed14271b99146bb65ca6dec18438e73d72c4 /tests | |
parent | 18683d2b7559cafc0d102f1facfc05aebfabcdcd (diff) | |
download | slixmpp-183a3f1b87a8f5a6c4e174dec6de513a0bb5cb83.tar.gz slixmpp-183a3f1b87a8f5a6c4e174dec6de513a0bb5cb83.tar.bz2 slixmpp-183a3f1b87a8f5a6c4e174dec6de513a0bb5cb83.tar.xz slixmpp-183a3f1b87a8f5a6c4e174dec6de513a0bb5cb83.zip |
Updated XHTML-IM stanza with documentation and PEP8 style.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_messagestanzas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_messagestanzas.py b/tests/test_messagestanzas.py index f55211db..5e2a667a 100644 --- a/tests/test_messagestanzas.py +++ b/tests/test_messagestanzas.py @@ -32,7 +32,7 @@ class TestMessageStanzas(SleekTest): msg['type'] = 'chat' p = ET.Element('{http://www.w3.org/1999/xhtml}p') p.text = "This is the htmlim message" - msg['html']['html'] = p + msg['html']['body'] = p self.checkMessage(msg, """ <message to="fritzy@netflint.net/sleekxmpp" type="chat"> <body>this is the plaintext message</body> |