diff options
author | mathieui <mathieui@mathieui.net> | 2021-02-19 19:06:41 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2021-02-19 19:06:41 +0100 |
commit | 2ba89727a6627f86e66ec4f3baba464da1b0b19c (patch) | |
tree | d18c9e4bccc85d3c5770515966ce9866f8bc39dc /tests/test_stanza_xep_0424.py | |
parent | 626bf5ff8ac5bc4c8758cd437e52f4e7c86ec179 (diff) | |
parent | a397cc3a7d824d7c5bdfbe316b78deb17e190ecd (diff) | |
download | slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.gz slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.bz2 slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.tar.xz slixmpp-2ba89727a6627f86e66ec4f3baba464da1b0b19c.zip |
Merge branch 'fix-test-order-race' into 'master'
tests: fix prerequisites for stanza tests
See merge request poezio/slixmpp!134
Diffstat (limited to 'tests/test_stanza_xep_0424.py')
-rw-r--r-- | tests/test_stanza_xep_0424.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_stanza_xep_0424.py b/tests/test_stanza_xep_0424.py index c94ed79b..684632d6 100644 --- a/tests/test_stanza_xep_0424.py +++ b/tests/test_stanza_xep_0424.py @@ -2,11 +2,13 @@ import unittest from slixmpp import Message from slixmpp.test import SlixTest from slixmpp.plugins.xep_0424 import stanza +from slixmpp.plugins.xep_0422 import stanza as astanza class TestRetraction(SlixTest): def setUp(self): + astanza.register_plugins() stanza.register_plugins() def testRetract(self): |