From be3659176000c0d34f3daf6375fd8efec038b63c Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 11 Sep 2018 07:33:16 +0200 Subject: [PATCH] Fix test. --- plugins/Misc/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Misc/test.py b/plugins/Misc/test.py index 9f4d34aa4..c38fb1e19 100644 --- a/plugins/Misc/test.py +++ b/plugins/Misc/test.py @@ -209,11 +209,11 @@ class MiscTestCase(ChannelPluginTestCase): nickConfig.setValue(orig) def testMore(self): - self.assertRegexp('echo %s' % ('abc'*300), 'more') + self.assertRegexp('echo %s' % ('abc'*400), 'more') self.assertRegexp('more', 'more') self.assertNotRegexp('more', 'more') with conf.supybot.plugins.Misc.mores.context(2): - self.assertRegexp('echo %s' % ('abc'*600), 'more') + self.assertRegexp('echo %s' % ('abc'*700), 'more') self.assertNotRegexp('more', 'more') m = self.irc.takeMsg()