Commit 50d4c15b authored by Martin Panter's avatar Martin Panter

Issue #27030: Merge RE fix from 3.5

parents 52855452 d4704803
......@@ -8,6 +8,7 @@ import sys
import os
import codecs
import io
import re
import tempfile
import shutil
import unittest
......@@ -222,8 +223,8 @@ from __future__ import print_function"""
actually_write=False)
# Testing that it logged this message when write=False was passed is
# sufficient to see that it did not bail early after "No changes".
message_regex = r"Not writing changes to .*%s%s" % (
os.sep, os.path.basename(test_file))
message_regex = r"Not writing changes to .*%s" % \
re.escape(os.sep + os.path.basename(test_file))
for message in debug_messages:
if "Not writing changes" in message:
self.assertRegex(message, message_regex)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment