Skip to content

Commit

Permalink
Fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ifoukarakis committed Sep 6, 2024
1 parent c21fd6a commit cdc1431
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions airflow/tests/general/test_monitoring.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit cdc1431

Please sign in to comment.