File tree Expand file tree Collapse file tree
tests/regression/ba-issues Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -256,17 +256,17 @@ def process_and_run_test_cases(
256256 failed = len (failed_ids )
257257
258258 format_issue_ids_should_test = (
259- " " .join ("#" + str ( x ) for x in issue_ids_should_test )
259+ " " .join (f"# { x } " for x in issue_ids_should_test )
260260 if issue_ids_should_test
261261 else "no more"
262262 )
263263 format_json_only_ids = (
264- " " .join ("#" + str ( x ) for x in json_only_ids ) if json_only_ids else "no more"
264+ " " .join (f"# { x } " for x in json_only_ids ) if json_only_ids else "no more"
265265 )
266266
267267 print (f"####################################" )
268268 print (f"==== Test results ====" )
269- print (f" Total: { total } " )
269+ print (f" Total: { total } " )
270270 print (f" Passed: { passed } " )
271271 print (f" Failed: { failed } " )
272272 if not selected_ids :
You can’t perform that action at this time.
0 commit comments