For current directory use os.curdir, not ".".

This commit is contained in:
Jack Jansen 2000-09-15 12:58:08 +00:00
parent 00ce51e38e
commit 8b7c3c0be7
1 changed files with 2 additions and 2 deletions

View File

@ -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