diff options
Diffstat (limited to 'itests')
-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) |