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

@@ -44,7 +44,7 @@ async fn exec_server_reports_malformed_websocket_json_and_keeps_running() -> any
.wait_for_event(|event| {
matches!(
event,
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if id == &initialize_id
JSONRPCMessage::Response(JSONRPCResponse { id, .. }) if *id == initialize_id
)
})
.await?;