summaryrefslogtreecommitdiffstats
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-09-21 13:48:12 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-09-21 13:48:12 (GMT)
commite418d760897cc6f6f4dedb364f80f3f52525ffa6 (patch)
tree884e771605575830654a6cd8bf9a0134f81406a1 /Lib/test/support.py
parent0847db7c01cb07011d3ab7a4de43cc90417637af (diff)
downloadcpython-e418d760897cc6f6f4dedb364f80f3f52525ffa6.zip
cpython-e418d760897cc6f6f4dedb364f80f3f52525ffa6.tar.gz
cpython-e418d760897cc6f6f4dedb364f80f3f52525ffa6.tar.bz2
#15304: fix wrong warning message in test.support.temp_cwd().
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index d88562e..e1ec9e2 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -600,7 +600,7 @@ def temp_cwd(name='tempcwd', quiet=False, path=None):
except OSError:
if not quiet:
raise
- warnings.warn('tests may fail, unable to change the CWD to ' + name,
+ warnings.warn('tests may fail, unable to change the CWD to ' + path,
RuntimeWarning, stacklevel=3)
try:
yield os.getcwd()