diff options
author | mathieui <mathieui@mathieui.net> | 2022-03-07 21:31:13 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2022-03-07 21:31:13 +0100 |
commit | ad610c7dedaa0279550fba6e4267944d00fd834f (patch) | |
tree | f76564f901a9aa8a317d2fd066c5d10ee477b755 /tests | |
parent | e8f45dedfed822a9de7bd84a98a31de3f5412daa (diff) | |
download | slixmpp-ad610c7dedaa0279550fba6e4267944d00fd834f.tar.gz slixmpp-ad610c7dedaa0279550fba6e4267944d00fd834f.tar.bz2 slixmpp-ad610c7dedaa0279550fba6e4267944d00fd834f.tar.xz slixmpp-ad610c7dedaa0279550fba6e4267944d00fd834f.zip |
Fix the XEP-0444 stanza test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_stanza_xep_0444.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_stanza_xep_0444.py b/tests/test_stanza_xep_0444.py index 0fe3f6fc..48d569e3 100644 --- a/tests/test_stanza_xep_0444.py +++ b/tests/test_stanza_xep_0444.py @@ -23,7 +23,7 @@ class TestReactions(SlixTest): def setUp(self): register_stanza_plugin(Message, stanza.Reactions) - register_stanza_plugin(stanza.Reactions, stanza.Reaction) + register_stanza_plugin(stanza.Reactions, stanza.Reaction, iterable=True) def testCreateReactions(self): """Testing creating Reactions.""" |