From: Mark Hammond Date: Mon, 14 Aug 2000 23:06:37 +0000 (+0000) Subject: Remove the test for abspath with an empty path - too hard to do in a cross-platform... X-Git-Tag: v2.0b1~459 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=041307d95c60fd9c7859a6776358ec80282557dd;p=thirdparty%2FPython%2Fcpython.git Remove the test for abspath with an empty path - too hard to do in a cross-platform manner. --- diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py index e458f625a015..ae9054b3a89b 100644 --- a/Lib/test/test_ntpath.py +++ b/Lib/test/test_ntpath.py @@ -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: