Remove the test for abspath with an empty path - too hard to do in a cross-platform manner.

This commit is contained in:
Mark Hammond 2000-08-14 23:06:37 +00:00
parent ccede59889
commit 041307d95c

View file

@ -36,7 +36,6 @@ tester('ntpath.isabs("\\foo")', 1)
tester('ntpath.isabs("\\foo\\bar")', 1)
tester('ntpath.abspath("C:\\")', "C:\\")
tester('ntpath.abspath("")', os.getcwd())
if errors: