Преглед на файлове

fix tests

Signed-off-by: Soumik Dutta <shalearkane@gmail.com>
Soumik Dutta преди 2 години
родител
ревизия
044ae7869a
променени са 4 файла, в които са добавени 4 реда и са изтрити 12 реда
  1. 1 3
      borgmatic/hooks/cronhub.py
  2. 1 3
      borgmatic/hooks/cronitor.py
  3. 1 3
      tests/unit/hooks/test_cronhub.py
  4. 1 3
      tests/unit/hooks/test_cronitor.py

+ 1 - 3
borgmatic/hooks/cronhub.py

@@ -29,9 +29,7 @@ def ping_monitor(hook_config, config_filename, state, monitoring_log_level, dry_
     '''
     if state not in MONITOR_STATE_TO_CRONHUB:
         logger.debug(
-            '{}: Ignoring unsupported monitoring {} in Cronhub hook'.format(
-                config_filename, state.name.lower()
-            )
+            f'{config_filename}: Ignoring unsupported monitoring {state.name.lower()} in Cronhub hook'
         )
         return
 

+ 1 - 3
borgmatic/hooks/cronitor.py

@@ -29,9 +29,7 @@ def ping_monitor(hook_config, config_filename, state, monitoring_log_level, dry_
     '''
     if state not in MONITOR_STATE_TO_CRONITOR:
         logger.debug(
-            '{}: Ignoring unsupported monitoring {} in Cronitor hook'.format(
-                config_filename, state.name.lower()
-            )
+            f'{config_filename}: Ignoring unsupported monitoring {state.name.lower()} in Cronitor hook'
         )
         return
 

+ 1 - 3
tests/unit/hooks/test_cronhub.py

@@ -106,9 +106,7 @@ def test_ping_monitor_with_other_error_logs_warning():
 
 def test_ping_monitor_with_unsupported_monitoring_state():
     hook_config = {'ping_url': 'https://example.com'}
-    flexmock(module.logger).should_receive("debug").once().with_args(
-        '{}: Ignoring unsupported monitoring {} in Cronhub hook'.format("config.yaml", "log")
-    )
+    flexmock(module.requests).should_receive('get').never()
     module.ping_monitor(
         hook_config, 'config.yaml', module.monitor.State.LOG, monitoring_log_level=1, dry_run=False,
     )

+ 1 - 3
tests/unit/hooks/test_cronitor.py

@@ -91,9 +91,7 @@ def test_ping_monitor_with_other_error_logs_warning():
 
 def test_ping_monitor_with_unsupported_monitoring_state():
     hook_config = {'ping_url': 'https://example.com'}
-    flexmock(module.logger).should_receive("debug").once().with_args(
-        '{}: Ignoring unsupported monitoring {} in Cronitor hook'.format("config.yaml", "log")
-    )
+    flexmock(module.requests).should_receive('get').never()
     module.ping_monitor(
         hook_config, 'config.yaml', module.monitor.State.LOG, monitoring_log_level=1, dry_run=False,
     )