@@ -16,18 +16,18 @@ def tester(fn, wantResult):
1616 errors = errors + 1
1717
1818tester ('ntpath.splitdrive("c:\\ foo\\ bar")' , ('c:' , '\\ foo\\ bar' ))
19- tester ('ntpath.splitdrive ("\\ \\ conky\\ mountpoint\\ foo\\ bar")' , ('\\ \\ conky\\ mountpoint' , '\\ foo\\ bar' ))
19+ tester ('ntpath.splitunc ("\\ \\ conky\\ mountpoint\\ foo\\ bar")' , ('\\ \\ conky\\ mountpoint' , '\\ foo\\ bar' ))
2020tester ('ntpath.splitdrive("c:/foo/bar")' , ('c:' , '/foo/bar' ))
21- tester ('ntpath.splitdrive ("//conky/mountpoint/foo/bar")' , ('//conky/mountpoint' , '/foo/bar' ))
21+ tester ('ntpath.splitunc ("//conky/mountpoint/foo/bar")' , ('//conky/mountpoint' , '/foo/bar' ))
2222
2323tester ('ntpath.split("c:\\ foo\\ bar")' , ('c:\\ foo' , 'bar' ))
2424tester ('ntpath.split("\\ \\ conky\\ mountpoint\\ foo\\ bar")' , ('\\ \\ conky\\ mountpoint\\ foo' , 'bar' ))
2525
2626tester ('ntpath.split("c:\\ ")' , ('c:\\ ' , '' ))
27- tester ('ntpath.split("\\ \\ conky\\ mountpoint\\ ")' , ('\\ \\ conky\\ mountpoint\\ ' , '' ))
27+ tester ('ntpath.split("\\ \\ conky\\ mountpoint\\ ")' , ('\\ \\ conky\\ mountpoint' , '' ))
2828
2929tester ('ntpath.split("c:/")' , ('c:/' , '' ))
30- tester ('ntpath.split("//conky/mountpoint/")' , ('//conky/mountpoint/ ' , '' ))
30+ tester ('ntpath.split("//conky/mountpoint/")' , ('//conky/mountpoint' , '' ))
3131
3232tester ('ntpath.isabs("c:\\ ")' , 1 )
3333tester ('ntpath.isabs("\\ \\ conky\\ mountpoint\\ ")' , 1 )
0 commit comments