summaryrefslogtreecommitdiff
path: root/Lib/test/support/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/support/__init__.py')
-rw-r--r--Lib/test/support/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index d82ac88d77..6658ece735 100644
--- a/Lib/test/support/__init__.py
+++ b/Lib/test/support/__init__.py
@@ -958,7 +958,7 @@ def temp_dir(path=None, quiet=False):
if not quiet:
raise
warnings.warn(f'tests may fail, unable to create '
- f'temporary directory {path}: {exc}',
+ f'temporary directory {path!r}: {exc}',
RuntimeWarning, stacklevel=3)
try:
yield path
@@ -986,7 +986,7 @@ def change_cwd(path, quiet=False):
if not quiet:
raise
warnings.warn(f'tests may fail, unable to change the current working '
- f'directory to {path}: {exc}',
+ f'directory to {path!r}: {exc}',
RuntimeWarning, stacklevel=3)
try:
yield os.getcwd()