]> granicus.if.org Git - python/commitdiff
Remove the test for abspath with an empty path - too hard to do in a cross-platform...
authorMark Hammond <mhammond@skippinet.com.au>
Mon, 14 Aug 2000 23:06:37 +0000 (23:06 +0000)
committerMark Hammond <mhammond@skippinet.com.au>
Mon, 14 Aug 2000 23:06:37 +0000 (23:06 +0000)
Lib/test/test_ntpath.py

index e458f625a01542552ca63e10253101f882b20572..ae9054b3a89bdeb7daa745a2c7c7720542251e42 100644 (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: