ChannelLogger: Fix test broken by previous merge.

This commit is contained in:
Valentin Lorentz 2019-09-14 12:15:57 +02:00
parent 573921c00f
commit af6052997c
1 changed files with 2 additions and 2 deletions

View File

@ -34,10 +34,10 @@ class ChannelLoggerTestCase(PluginTestCase):
def testLogDir(self):
self.assertEqual(
self.irc.getCallback('ChannelLogger').getLogName('#foo'),
self.irc.getCallback('ChannelLogger').getLogName('test', '#foo'),
'#foo.log')
self.assertEqual(
self.irc.getCallback('ChannelLogger').getLogName('#f/../oo'),
self.irc.getCallback('ChannelLogger').getLogName('test', '#f/../oo'),
'#f..oo.log')