summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_gettext.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2000-09-15 12:58:08 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2000-09-15 12:58:08 (GMT)
commit8b7c3c0be7f51aef0026dc335d2e2f54535b4310 (patch)
tree291a90b3b2cb9fb05777b24aa25b6abf293591f8 /Lib/test/test_gettext.py
parent00ce51e38e92414bd5fb9ab6e5f439de2dd12177 (diff)
downloadcpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.zip
cpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.tar.gz
cpython-8b7c3c0be7f51aef0026dc335d2e2f54535b4310.tar.bz2
For current directory use os.curdir, not ".".
Diffstat (limited to 'Lib/test/test_gettext.py')
-rw-r--r--Lib/test/test_gettext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py
index 5e61ba5..d31cac2 100644
--- a/Lib/test/test_gettext.py
+++ b/Lib/test/test_gettext.py
@@ -140,8 +140,8 @@ def teardown():
try:
setup()
- test_api_1('.', MOFILE)
- test_api_2('.', MOFILE)
+ test_api_1(os.curdir, MOFILE)
+ test_api_2(os.curdir, MOFILE)
finally:
teardown()
pass