summaryrefslogtreecommitdiff
path: root/tests/test_stanza_message.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_stanza_message.py')
-rw-r--r--tests/test_stanza_message.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stanza_message.py b/tests/test_stanza_message.py
index c7b6f7e6..68c78dab 100644
--- a/tests/test_stanza_message.py
+++ b/tests/test_stanza_message.py
@@ -17,7 +17,7 @@ class TestMessageStanzas(SlixTest):
msg['from'] = 'room@someservice.someserver.tld/somenick'
msg['type'] = 'groupchat'
msg['body'] = "this is a message"
- msg.reply()
+ msg = msg.reply()
self.failUnless(str(msg['to']) == 'room@someservice.someserver.tld')
def testAttribProperty(self):