From 7b97f7fe2a264fb58063fa3ca21312f4a42aaad1 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 26 May 2023 21:30:56 +0200 Subject: [PATCH] Remove timeout override --- plugins/BadWords/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/BadWords/test.py b/plugins/BadWords/test.py index 6ba9c1821..920598616 100644 --- a/plugins/BadWords/test.py +++ b/plugins/BadWords/test.py @@ -118,7 +118,7 @@ class BadWordsInfilterTestCase(ChannelPluginTestCase): args=(self.channel, 'oh shit'), prefix='foobar!user@__no_testcap__', server_tags={'msgid': 'abcde'})) - m = self.getMsg(' ', timeout=0.5) + m = self.getMsg(' ') self.assertIsNotNone(m) self.assertEqual(m.command, 'REDACT', m) self.assertEqual(m.args, (self.channel, 'abcde'), m)