diff options
author | Link Mauve <linkmauve@linkmauve.fr> | 2020-12-06 19:24:08 +0100 |
---|---|---|
committer | Link Mauve <linkmauve@linkmauve.fr> | 2020-12-06 19:24:08 +0100 |
commit | c0acb7e34f873488e94691f39636da513c8468d0 (patch) | |
tree | 4d6a141bc697d4ded4541344d1192be7b248cdfc /itests/test_muc.py | |
parent | bcd8cf085f528c602f78cba2c9eb2d784eb993da (diff) | |
parent | c89a21463f0b58be377d5775529d5ddd71889f4c (diff) | |
download | slixmpp-c0acb7e34f873488e94691f39636da513c8468d0.tar.gz slixmpp-c0acb7e34f873488e94691f39636da513c8468d0.tar.bz2 slixmpp-c0acb7e34f873488e94691f39636da513c8468d0.tar.xz slixmpp-c0acb7e34f873488e94691f39636da513c8468d0.zip |
Merge branch 'more-tests' into 'master'
Add more integration tests
See merge request poezio/slixmpp!78
Diffstat (limited to 'itests/test_muc.py')
-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) |