summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ntpath.py
diff options
context:
space:
mode:
authorMark Hammond <mhammond@skippinet.com.au>2000-08-14 23:06:37 (GMT)
committerMark Hammond <mhammond@skippinet.com.au>2000-08-14 23:06:37 (GMT)
commit041307d95c60fd9c7859a6776358ec80282557dd (patch)
tree40124e5d83c1346aafa31d0fd1d022c2f5d327bd /Lib/test/test_ntpath.py
parentccede598894e780cb3e4ef80aeede313f62bb1fb (diff)
downloadcpython-041307d95c60fd9c7859a6776358ec80282557dd.zip
cpython-041307d95c60fd9c7859a6776358ec80282557dd.tar.gz
cpython-041307d95c60fd9c7859a6776358ec80282557dd.tar.bz2
Remove the test for abspath with an empty path - too hard to do in a cross-platform manner.
Diffstat (limited to 'Lib/test/test_ntpath.py')
-rw-r--r--Lib/test/test_ntpath.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_ntpath.py b/Lib/test/test_ntpath.py
index e458f62..ae9054b 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: