From 8b7c3c0be7f51aef0026dc335d2e2f54535b4310 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Fri, 15 Sep 2000 12:58:08 +0000 Subject: [PATCH] For current directory use os.curdir, not ".". --- Lib/test/test_gettext.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_gettext.py b/Lib/test/test_gettext.py index 5e61ba5dd4e..d31cac2091d 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