We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b6f38d commit 9e4a44bCopy full SHA for 9e4a44b
git/test/test_submodule.py
@@ -344,8 +344,9 @@ def _do_base_tests(self, rwrepo):
344
abspmp = nsm.abspath
345
assert nsm.move(nmp) is nsm
346
nmp = nmp[:-1] # cut last /
347
- assert nsm.path == nmp
348
- assert rwrepo.submodules[0].path == nmp
+ nmpl = to_native_path_linux(nmp)
+ assert nsm.path == nmpl
349
+ assert rwrepo.submodules[0].path == nmpl
350
351
mpath = 'newsubmodule'
352
absmpath = join_path_native(rwrepo.working_tree_dir, mpath)
0 commit comments