Fix exec-server compile breakage and websocket test helpers

This commit is contained in:
starr-openai
2026-03-19 01:18:16 +00:00
parent f58a8674bc
commit 53bb53b968
7 changed files with 203 additions and 223 deletions

View File

@@ -24,7 +24,7 @@ async fn exec_server_stubs_process_start_over_websocket() -> anyhow::Result<()>
.wait_for_event(|event| {
matches!(
event,
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if id == &initialize_id
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if *id == initialize_id
)
})
.await?;
@@ -53,7 +53,7 @@ async fn exec_server_stubs_process_start_over_websocket() -> anyhow::Result<()>
.wait_for_event(|event| {
matches!(
event,
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if id == &process_start_id
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if *id == process_start_id
)
})
.await?;