From cdc1431b7dd5c8fa4d7a2d31703ee9d281016add Mon Sep 17 00:00:00 2001 From: Ioannis Foukarakis Date: Fri, 6 Sep 2024 10:45:17 +0300 Subject: [PATCH] Fix linter issues --- airflow/tests/general/test_monitoring.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/airflow/tests/general/test_monitoring.py b/airflow/tests/general/test_monitoring.py index 79392736c..71b1cda72 100644 --- a/airflow/tests/general/test_monitoring.py +++ b/airflow/tests/general/test_monitoring.py @@ -62,12 +62,9 @@ def test_hightouch_check_syncs_fail(load_data): response = load_data('monitoring/syncs_fail.json') failed_syncs = hightouch_check_syncs(response) # Expected to return dict containing failed loads - assert failed_syncs == [{ - "id": 99999, - "slug": "test_sync_1", - "status": "warning", - "updatedAt": "2022-12-07T12:59:20Z" - }] + assert failed_syncs == [ + {"id": 99999, "slug": "test_sync_1", "status": "warning", "updatedAt": "2022-12-07T12:59:20Z"} + ] def test_hightouch_check_syncs_error(load_data):