From 227c01a194ff4c83ba395ccf175cd72d882b3da2 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Tue, 10 Dec 2013 14:14:28 -0600 Subject: [PATCH] Issue #19928: Fix test on Windows --- Lib/test/test_repr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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): -- 2.50.1