Fix conftest typo

This commit is contained in:
pinpox
2025-04-18 14:25:22 +02:00
parent 0b983d7994
commit 2152d59d9d

View File

@@ -32,7 +32,7 @@ def git_repo(tmp_path: Path) -> Path:
cmd = nix_shell(["git"], ["git", "init"])
subprocess.run(cmd, cwd=tmp_path, check=True)
# set user.name and user.email
cmd = nix_shell(["it"], ["git", "config", "user.name", "test"])
cmd = nix_shell(["git"], ["git", "config", "user.name", "test"])
subprocess.run(cmd, cwd=tmp_path, check=True)
cmd = nix_shell(["git"], ["git", "config", "user.email", "test@test.test"])
subprocess.run(cmd, cwd=tmp_path, check=True)