Skip to content

Commit

Permalink
Fix missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernard Szabo committed Dec 11, 2024
1 parent b4a092f commit 22a467a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tubular/scripts/dd_synthetic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def run_synthetic_tests(enable_automated_rollbacks, slack_notification_channel):

dd_client.trigger_synthetic_tests(tests_to_run)

failed_tests = dd_client.get_failed_tests()
failed_tests = dd_client.get_failed_tests(tests_to_run)
for failed_test in failed_tests:
logging.warning(f'Test {failed_test["name"]}({failed_test["id"]}) failed')

Expand Down

0 comments on commit 22a467a

Please sign in to comment.