Skip to content

Commit abdb8d8

Browse files
committed
Revert "Test for correct sep"
This reverts commit 340cc07.
1 parent 340cc07 commit abdb8d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_ntpath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ def test_abspath(self):
808808
tester('ntpath.abspath("C:\\nul")', "\\\\.\\nul")
809809
self.assertTrue(ntpath.isabs(ntpath.abspath("C:spam")))
810810
self.assertTrue(ntpath.isabs(ntpath.abspath("C:\x00")))
811-
self.assertEqual(ntpath.abspath("\x00:spam"), "\x00:\\spam")
811+
self.assertTrue(ntpath.isabs(ntpath.abspath("\x00:spam")))
812812
tester('ntpath.abspath("//..")', "\\\\")
813813
tester('ntpath.abspath("//../")', "\\\\..\\")
814814
tester('ntpath.abspath("//../..")', "\\\\..\\")

0 commit comments

Comments
 (0)