diff -r 60d90f8ad38d Lib/test/test_pathlib.py --- a/Lib/test/test_pathlib.py Tue Dec 03 15:04:36 2013 +0100 +++ b/Lib/test/test_pathlib.py Tue Dec 03 23:59:06 2013 +0800 @@ -1275,8 +1275,8 @@ # See https://bitbucket.org/pitrou/pathlib/issue/9/pathresolve-fails-on-complex-symlinks p = self.cls(BASE) self.dirlink('.', join('0')) - self.dirlink('0/0', join('1')) - self.dirlink('1/1', join('2')) + self.dirlink(os.path.join('0', '0'), join('1')) + self.dirlink(os.path.join('1', '1'), join('2')) q = p / '2' self.assertEqual(q.resolve(), p)