From: Zachary Ware Date: Tue, 10 Dec 2013 20:17:22 +0000 (-0600) Subject: Issue #19928: Fix test on Windows X-Git-Tag: v3.4.0b2~261^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ea6854a9efe009201caea7ce7f05b0f21240b75a;p=thirdparty%2FPython%2Fcpython.git Issue #19928: Fix test on Windows --- diff --git a/Lib/test/test_reprlib.py b/Lib/test/test_reprlib.py index 3687de98b6de..c233b1d67bea 100644 --- a/Lib/test/test_reprlib.py +++ b/Lib/test/test_reprlib.py @@ -173,8 +173,8 @@ class ReprTests(unittest.TestCase): return x return inner x = get_cell().__closure__[0] - self.assertRegex(repr(x), - r'') + self.assertRegex(repr(x), r'') self.assertRegex(r(x), r'') def test_descriptors(self):