Remove timeout override

This commit is contained in:
Valentin Lorentz 2023-05-26 21:30:56 +02:00
parent f00ecdeaef
commit 7b97f7fe2a

View File

@ -118,7 +118,7 @@ class BadWordsInfilterTestCase(ChannelPluginTestCase):
args=(self.channel, 'oh shit'), args=(self.channel, 'oh shit'),
prefix='foobar!user@__no_testcap__', prefix='foobar!user@__no_testcap__',
server_tags={'msgid': 'abcde'})) server_tags={'msgid': 'abcde'}))
m = self.getMsg(' ', timeout=0.5) m = self.getMsg(' ')
self.assertIsNotNone(m) self.assertIsNotNone(m)
self.assertEqual(m.command, 'REDACT', m) self.assertEqual(m.command, 'REDACT', m)
self.assertEqual(m.args, (self.channel, 'abcde'), m) self.assertEqual(m.args, (self.channel, 'abcde'), m)