From f442aeae9c930aa2d2d4c482861823462f01c877 Mon Sep 17 00:00:00 2001 From: Soumik Dutta Date: Mon, 6 Mar 2023 05:21:56 +0530 Subject: [PATCH] fix logs_monitor_start_error() Signed-off-by: Soumik Dutta --- tests/unit/commands/test_borgmatic.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tests/unit/commands/test_borgmatic.py b/tests/unit/commands/test_borgmatic.py index e2da3b86..fc3f34dd 100644 --- a/tests/unit/commands/test_borgmatic.py +++ b/tests/unit/commands/test_borgmatic.py @@ -40,11 +40,9 @@ def test_run_configuration_logs_monitor_start_error(): flexmock(module.borg_version).should_receive('local_borg_version').and_return(flexmock()) flexmock(module.dispatch).should_receive('call_hooks').and_raise(OSError).and_return( None - ).and_return(None) - expected_results = [flexmock(), flexmock()] - flexmock(module).should_receive('log_error_records').and_return( - [expected_results[0]] - ).and_return([expected_results[1]]) + ).and_return(None).and_return(None) + expected_results = [flexmock()] + flexmock(module).should_receive('log_error_records').and_return(expected_results) flexmock(module).should_receive('run_actions').never() config = {'location': {'repositories': ['foo']}} arguments = {'global': flexmock(monitoring_verbosity=1, dry_run=False), 'create': flexmock()}