Skip to content

Commit d51a741

Browse files
committed
Update end_to_end_test_utilities.py
1 parent 2ca7152 commit d51a741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/scripts/end_to_end_test_utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def validate_stdout_in_candidate(stdout: str, expected_in_stdout: list[str]) ->
187187
def run_trace_test(cwd: pathlib.Path, config: TestConfig, expected_improvement_pct: int) -> bool:
188188
test_root = cwd / "tests" / (config.test_framework or "")
189189
clear_directory(test_root)
190-
command = ["python", "-m", "codeflash", "optimize", "workload.py"]
190+
command = ["python", "-m", "codeflash.main", "optimize", "workload.py"]
191191
process = subprocess.Popen(
192192
command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, cwd=str(cwd), env=os.environ.copy()
193193
)

0 commit comments

Comments
 (0)