Skip to content

Commit 4ccb46b

Browse files
committed
Fix test
1 parent cd39036 commit 4ccb46b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/cli/test_main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,10 @@ class TestApplyAgentFixCLI:
101101
@pytest.fixture
102102
def mock_env(self):
103103
"""Set up environment variables for tests."""
104-
return {"ANTHROPIC_API_KEY": "test-api-key"}
104+
return {
105+
"ANTHROPIC_API_KEY": "test-api-key",
106+
"GITHUB_TOKEN": "test-github-token",
107+
}
105108

106109
@pytest.fixture
107110
def cli_args(self, tmp_path):

0 commit comments

Comments
 (0)