From 2152d59d9d17713e676ebdbec6765b376b1d7afa Mon Sep 17 00:00:00 2001 From: pinpox Date: Fri, 18 Apr 2025 14:25:22 +0200 Subject: [PATCH] Fix conftest typo --- pkgs/clan-app/tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-app/tests/conftest.py b/pkgs/clan-app/tests/conftest.py index a1974c47d..047f8724a 100644 --- a/pkgs/clan-app/tests/conftest.py +++ b/pkgs/clan-app/tests/conftest.py @@ -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)