From a6fb6e84fea738014673e283669fd4659335cc28 Mon Sep 17 00:00:00 2001 From: bszabo Date: Thu, 9 Jan 2025 22:39:08 -0500 Subject: [PATCH] fix test list --- tubular/scripts/dd_synthetic_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubular/scripts/dd_synthetic_tests.py b/tubular/scripts/dd_synthetic_tests.py index b611cbb3..3666bd5c 100644 --- a/tubular/scripts/dd_synthetic_tests.py +++ b/tubular/scripts/dd_synthetic_tests.py @@ -45,7 +45,7 @@ def trigger_synthetic_tests(self, test_requests: [SyntheticTest]): :param test_requests: List of tests to be run :return: None, but saves batch ID and test run IDs as object attributes ''' - requests = list(self.WAFFLE_SWITCH_TEST) + test_requests + requests = [self.WAFFLE_SWITCH_TEST] + test_requests self._record_batch_tests(test_requests) self.trigger_time = time.time() # Key timeouts off of this logging.info(f'CI batch triggered at time {self.trigger_time}')