Skip to content

Commit 1bedfbb

Browse files
committed
use native path separators
1 parent 4f6348a commit 1bedfbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/src/test/python/test_mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ def test_get_repos_for_project_first_repo(monkeypatch):
465465
test_repo = "/" + project_name
466466

467467
def mock_get_repos(*args, **kwargs):
468-
return [test_repo + "/x", test_repo, test_repo + "/y"]
468+
return [test_repo + os.path.sep + "x", test_repo, test_repo + os.path.sep + "y"]
469469

470470
def mock_get_repo_type(*args, **kwargs):
471471
return "Git"

0 commit comments

Comments
 (0)