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

View file

@ -140,8 +140,8 @@ def teardown():
try: try:
setup() setup()
test_api_1('.', MOFILE) test_api_1(os.curdir, MOFILE)
test_api_2('.', MOFILE) test_api_2(os.curdir, MOFILE)
finally: finally:
teardown() teardown()
pass pass