@@ -1237,14 +1237,14 @@ def generate_and_instrument_tests(
12371237 Path (self .original_module_path ),
12381238 self .test_cfg ,
12391239 INDIVIDUAL_TESTCASE_TIMEOUT ,
1240- self .function_trace_id , # [:-4]+"TST0" if run_experiment else self.function_trace_id,
1240+ self .function_trace_id [:- 4 ]+ "TST0" if run_experiment else self .function_trace_id ,
12411241 test_index ,
12421242 test_path ,
12431243 test_perf_path ,
12441244 single_prompt = False ,
12451245 )
12461246 for test_index , (test_path , test_perf_path ) in enumerate (
1247- zip (generated_test_paths , generated_perf_test_paths )
1247+ zip (generated_test_paths [: 2 ] , generated_perf_test_paths [: 2 ] )
12481248 )
12491249 ]
12501250 if run_experiment :
@@ -1258,13 +1258,13 @@ def generate_and_instrument_tests(
12581258 Path (self .original_module_path ),
12591259 self .test_cfg ,
12601260 INDIVIDUAL_TESTCASE_TIMEOUT ,
1261- self .function_trace_id , # [:-4]+"TST1",
1261+ self .function_trace_id [:- 4 ]+ "TST1" ,
12621262 test_index ,
12631263 test_path ,
12641264 test_perf_path ,
12651265 single_prompt = True ,
12661266 )
12671267 for test_index , (test_path , test_perf_path ) in enumerate (
1268- zip (generated_test_paths , generated_perf_test_paths )
1268+ zip (generated_test_paths [ 2 :] , generated_perf_test_paths [ 2 :] )
12691269 )]
12701270 return original
0 commit comments