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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=041307d95c60fd9c7859a6776358ec80282557dd;p=python 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 e458f625a0..ae9054b3a8 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: