From: Zachary Ware Date: Tue, 10 Dec 2013 20:14:28 +0000 (-0600) Subject: Issue #19928: Fix test on Windows X-Git-Tag: v2.7.8~207 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=227c01a194ff4c83ba395ccf175cd72d882b3da2;p=python Issue #19928: Fix test on Windows --- diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index a0e4b1f287..3e1e890454 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -185,8 +185,8 @@ class ReprTests(unittest.TestCase): return x return inner x = get_cell().__closure__[0] - self.assertRegexpMatches(repr(x), r'') + self.assertRegexpMatches(repr(x), r'') self.assertRegexpMatches(r(x), r'') def test_descriptors(self):