Skip to content

Commit b50049e

Browse files
committed
return later
1 parent d48b3fc commit b50049e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scripts/end_to_end_test_topological_sort.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ def run_test(expected_improvement_pct: int) -> bool:
2828
],
2929
)
3030
cwd = (pathlib.Path(__file__).parent.parent.parent / "code_to_optimize").resolve()
31-
return run_codeflash_command(cwd, config, expected_improvement_pct)
31+
return_var = run_codeflash_command(cwd, config, expected_improvement_pct)
3232
finally:
3333
with pathlib.Path.open(pathlib.Path("pyproject.toml"), "w", encoding="utf-8") as f:
3434
f.write(original_content)
35-
35+
return return_var
3636

3737

3838
if __name__ == "__main__":

0 commit comments

Comments
 (0)