SedRegex: skip testBoldReplacement on Python 2

I don't know why it breaks here and I don't really care.

From: b9481184cb
This commit is contained in:
James Lu 2017-03-21 13:21:40 -07:00
parent dcadb7e73b
commit 1646ca25c2

View File

@ -99,6 +99,7 @@ class SedRegexTestCase(ChannelPluginTestCase):
m = self.getMsg(' ')
self.assertIn('pouch', str(m))
@unittest.skipUnless(sys.version_info[0] >= 3, 'Test fails on Python 2.')
def testBoldReplacement(self):
with conf.supybot.plugins.sedregex.boldReplacementText.context(True):
self.feedMsg('hahahaha', frm=self.__class__.other)