mirror of
https://github.com/progval/Limnoria.git
synced 2025-04-29 06:51:08 -05:00
Admin: Fix leftover state change in testPart
it affects Channel's testPart
This commit is contained in:
parent
c8030be71a
commit
943f39745d
@ -87,6 +87,7 @@ class AdminTestCase(PluginTestCase):
|
|||||||
ircdb.users.delUser(u.id)
|
ircdb.users.delUser(u.id)
|
||||||
|
|
||||||
def testJoin(self):
|
def testJoin(self):
|
||||||
|
try:
|
||||||
m = self.getMsg('join #foo')
|
m = self.getMsg('join #foo')
|
||||||
self.assertEqual(m.command, 'JOIN')
|
self.assertEqual(m.command, 'JOIN')
|
||||||
self.assertEqual(m.args[0], '#foo')
|
self.assertEqual(m.args[0], '#foo')
|
||||||
@ -94,6 +95,8 @@ class AdminTestCase(PluginTestCase):
|
|||||||
self.assertEqual(m.command, 'JOIN')
|
self.assertEqual(m.command, 'JOIN')
|
||||||
self.assertEqual(m.args[0], '#foo')
|
self.assertEqual(m.args[0], '#foo')
|
||||||
self.assertEqual(m.args[1], 'key')
|
self.assertEqual(m.args[1], 'key')
|
||||||
|
finally:
|
||||||
|
self.getMsg('part #foo')
|
||||||
|
|
||||||
def testNick(self):
|
def testNick(self):
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user