Skip to content

Commit 23ce897

Browse files
committed
tests(conftest): Fix git_repo fixture
1 parent 51e2c1e commit 23ce897

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def git_repo_kwargs(repos_path: pathlib.Path, git_dummy_repo_dir):
7171
"""Return kwargs for :func:`create_project`."""
7272
return {
7373
"url": "git+file://" + git_dummy_repo_dir,
74-
"parent_dir": str(repos_path),
74+
"dir": str(repos_path / "repo_name"),
7575
"name": "repo_name",
7676
}
7777

0 commit comments

Comments
 (0)