You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/mox3/files/mox3-0.12.0-RegexTest-pytho...

19 lines
652 B

From: Zac Medico <zmedico@gentoo.org>
Subject: [PATCH] RegexTest: python3.6 compatibility
https://bugs.launchpad.net/python-mox3/+bug/1665266
--- mox3-0.12.0/mox3/tests/test_mox.py
+++ mox3-0.12.0/mox3/tests/test_mox.py
@@ -316,8 +316,8 @@
def testReprWithFlags(self):
"""repr should return the regular expression pattern and flags."""
- self.assertTrue(repr(mox.Regex(r"a\s+b", flags=4)) ==
- "<regular expression 'a\s+b', flags=4>")
+ self.assertTrue(repr(mox.Regex(r"a\s+b", flags=8)) ==
+ r"<regular expression 'a\s+b', flags=8>")
class IsTest(testtools.TestCase):