summaryrefslogtreecommitdiff
path: root/itests
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-12-06 18:58:06 +0100
committermathieui <mathieui@mathieui.net>2020-12-06 18:59:59 +0100
commit12e3c9988df0b3e9023ed58bcad3b77bf43b82af (patch)
tree7bb9e3da0eb917788e0631ffdd6d19003ff9ed29 /itests
parentb8f368acf3f573795308a2f091ea101582a52554 (diff)
downloadslixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.gz
slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.bz2
slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.xz
slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.zip
itests: fix muc test name
Diffstat (limited to 'itests')
-rw-r--r--itests/test_muc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/itests/test_muc.py b/itests/test_muc.py
index 3dc91955..91073863 100644
--- a/itests/test_muc.py
+++ b/itests/test_muc.py
@@ -7,7 +7,7 @@ from slixmpp.test.integration import SlixIntegration
UNIQUE = uuid4().hex
-class TestConnect(SlixIntegration):
+class TestMUC(SlixIntegration):
async def asyncSetUp(self):
self.mucserver = self.envjid('CI_MUC_SERVER')
@@ -75,4 +75,4 @@ class TestConnect(SlixIntegration):
)
-suite = unittest.TestLoader().loadTestsFromTestCase(TestConnect)
+suite = unittest.TestLoader().loadTestsFromTestCase(TestMUC)