Skip to content

Commit f372955

Browse files
committed
new port
1 parent dd4a9d8 commit f372955

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/pytest/test_mcp_session_autocreate.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
def _run_airline_server():
1717
import os
1818

19-
os.environ["PORT"] = "9780"
19+
os.environ["PORT"] = "9700"
2020
from eval_protocol.mcp_servers.tau2.tau2_mcp import AirlineDomainMcp
2121

2222
server = AirlineDomainMcp(seed=None)
@@ -29,7 +29,7 @@ async def test_tool_call_returns_json_without_prior_initial_state():
2929
proc.start()
3030

3131
try:
32-
base_url = "http://127.0.0.1:9780/mcp"
32+
base_url = "http://127.0.0.1:9700/mcp"
3333
client = httpx.Client(timeout=1.0)
3434
deadline = time.time() + 20
3535
while time.time() < deadline:
@@ -41,7 +41,7 @@ async def test_tool_call_returns_json_without_prior_initial_state():
4141
pass
4242
time.sleep(0.2)
4343
else:
44-
pytest.fail("Server did not start on port 9780 in time")
44+
pytest.fail("Server did not start on port 9700 in time")
4545

4646
session = MCPSession(base_url=base_url, session_id="test-autocreate", seed=None, model_id="test-model")
4747

0 commit comments

Comments
 (0)