Skip to content

Commit

Permalink
fix test list
Browse files Browse the repository at this point in the history
  • Loading branch information
bszabo committed Jan 10, 2025
1 parent b3d10a4 commit 9adf4ed
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tubular/scripts/dd_synthetic_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,9 @@ def _record_test_run_ids(self, response_body):
for result in response_body['results']:
public_id = result['public_id']
test_run_id = result['result_id']
if public_id != self.WAFFLE_SWITCH_TEST.public_id:
if public_id == self.WAFFLE_SWITCH_TEST.public_id:
self.WAFFLE_SWITCH_TEST.test_run_id = test_run_id
else:
self.tests_by_public_id[public_id].test_run_id = test_run_id

def _poll_for_test_result(self, test):
Expand Down

0 comments on commit 9adf4ed

Please sign in to comment.