diff options
Diffstat (limited to 'tests/test_stanza_base.py')
-rw-r--r-- | tests/test_stanza_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stanza_base.py b/tests/test_stanza_base.py index 12081f42..dac3f046 100644 --- a/tests/test_stanza_base.py +++ b/tests/test_stanza_base.py @@ -61,7 +61,7 @@ class TestStanzaBase(SlixTest): stanza['from'] = "sender@example.com" stanza['payload'] = ET.Element("{foo}foo") - stanza.reply() + stanza = stanza.reply() self.failUnless(str(stanza['to'] == "sender@example.com"), "Stanza reply did not change 'to' attribute.") |