Jelajahi Sumber

fix logs_monitor_start_error()

Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
Soumik Dutta 2 tahun lalu
induk
melakukan
f442aeae9c
1 mengubah file dengan 3 tambahan dan 5 penghapusan
  1. 3 5
      tests/unit/commands/test_borgmatic.py

+ 3 - 5
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()}