Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit b917740

Browse files
committed
f:n
1 parent 32cef18 commit b917740

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engine/e2e-test/test_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def start_server() -> bool:
7070
def start_server_nix() -> bool:
7171
executable = getExecutablePath()
7272
process = subprocess.Popen(
73-
[executable] + ["start", "-p", "3928"],
73+
[executable] + ["--start-server"],
7474
stdout=subprocess.PIPE,
7575
stderr=subprocess.PIPE,
7676
text=True,
@@ -100,7 +100,7 @@ def start_server_nix() -> bool:
100100
def start_server_windows() -> bool:
101101
executable = getExecutablePath()
102102
process = subprocess.Popen(
103-
[executable] + ["start", "-p", "3928"],
103+
[executable] + ["--start-server"],
104104
stdout=subprocess.PIPE,
105105
stderr=subprocess.PIPE,
106106
text=True,

0 commit comments

Comments
 (0)