Skip to content

Commit 9b83128

Browse files
committed
Drop test case that's problematic in 3.11
This is already covered in test_ntpath.py.
1 parent 63839ff commit 9b83128

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/test/test_pathlib/test_join_windows.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ def test_join(self):
4040
pp = p.joinpath('E:d:s')
4141
self.assertEqual(pp, P('E:d:s'))
4242
# Joining onto a UNC path with no root
43-
pp = P('//').joinpath('server')
44-
self.assertEqual(pp, P('//server'))
4543
pp = P('//server').joinpath('share')
4644
self.assertEqual(pp, P(r'//server\share'))
4745
pp = P('//./BootPartition').joinpath('Windows')

0 commit comments

Comments
 (0)