itests: fix muc test name

This commit is contained in:
mathieui 2020-12-06 18:58:06 +01:00
parent b8f368acf3
commit 12e3c9988d

View file

@ -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)