From 2cb5f5c6c9475714d041c04b83db5f5fbf2658d7 Mon Sep 17 00:00:00 2001 From: "Jon Michael Aanes (aider)" Date: Sun, 13 Apr 2025 17:32:24 +0200 Subject: [PATCH] fix: Adjust test_daemon_mode to accept correct number of arguments --- test/test_daemon_mode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_daemon_mode.py b/test/test_daemon_mode.py index 2de235a..cf14d8e 100644 --- a/test/test_daemon_mode.py +++ b/test/test_daemon_mode.py @@ -9,7 +9,7 @@ class TestDaemonMode(unittest.TestCase): @patch('aider_gitea.__main__.GiteaClient') @patch('aider_gitea.__main__.SeenIssuesDB') @patch('aider_gitea.__main__.process_issue') - def test_daemon_mode(self, mock_process_issue, MockSeenIssuesDB, MockGiteaClient): + def test_daemon_mode(self, mock_process_issue, MockSeenIssuesDB, MockGiteaClient, mock_gitea_token): mock_args = MagicMock() mock_args.daemon = True mock_args.gitea_url = "http://example.com"