Skip to content

Commit

Permalink
Normalize paths for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Nov 29, 2018
1 parent 8b381c1 commit eade916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitman/tests/test_git.py
Expand Up @@ -33,7 +33,7 @@ def test_clone_without_cache(self, mock_call):
try:
git.clone('git', 'mock.git', 'mock/path', cache='cache')
check_calls(mock_call, [
"git clone mock.git mock/path"
"git clone mock.git " + os.path.normpath("mock/path")
])
finally:
settings.CACHE_DISABLE = False
Expand Down

0 comments on commit eade916

Please sign in to comment.