summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_runpy.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_runpy.py')
-rw-r--r--Lib/test/test_runpy.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_runpy.py b/Lib/test/test_runpy.py
index 510bf1e..45c839e 100644
--- a/Lib/test/test_runpy.py
+++ b/Lib/test/test_runpy.py
@@ -317,6 +317,8 @@ argv0 = sys.argv[0]
self.assertEqual(result["__package__"], expected_package)
def _check_import_error(self, script_name, msg):
+ # Double backslashes to handle path separators on Windows
+ msg = msg.replace("\\", "\\\\")
self.assertRaisesRegexp(ImportError, msg, run_path, script_name)
def test_basic_script(self):