diff options
author | mathieui <mathieui@mathieui.net> | 2020-12-06 18:58:06 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2020-12-06 18:59:59 +0100 |
commit | 12e3c9988df0b3e9023ed58bcad3b77bf43b82af (patch) | |
tree | 7bb9e3da0eb917788e0631ffdd6d19003ff9ed29 | |
parent | b8f368acf3f573795308a2f091ea101582a52554 (diff) | |
download | slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.gz slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.bz2 slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.tar.xz slixmpp-12e3c9988df0b3e9023ed58bcad3b77bf43b82af.zip |
itests: fix muc test name
-rw-r--r-- | itests/test_muc.py | 4 |
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) |