diff --git a/tests/ahriman/application/handlers/test_handler_update.py b/tests/ahriman/application/handlers/test_handler_update.py index a7cd444a..a5466fc3 100644 --- a/tests/ahriman/application/handlers/test_handler_update.py +++ b/tests/ahriman/application/handlers/test_handler_update.py @@ -108,4 +108,4 @@ def test_log_fn(application: Application, mocker: MockerFixture) -> None: """ logger_mock = mocker.patch("logging.Logger.info") Update.log_fn(application, False)("hello") - logger_mock.assert_called_once_with("hello") + logger_mock.assert_has_calls([mock.call("hello")])