@@ -792,7 +792,7 @@ describe("shared Codex app-server client", () => {
792792 await expect ( pendingLease ) . rejects . toThrow ( "codex app-server client is closed" ) ;
793793
794794 const freshLease = getLeasedSharedCodexAppServerClient ( { timeoutMs : 1000 } ) ;
795- await sendInitializeResult ( second , "openclaw/0.142 .0 (macOS; test)" ) ;
795+ await sendInitializeResult ( second , "openclaw/0.143 .0 (macOS; test)" ) ;
796796 await expect ( freshLease ) . resolves . toBe ( second . client ) ;
797797 expect ( second . process . stdin . destroyed ) . toBe ( false ) ;
798798 } ) ;
@@ -802,7 +802,7 @@ describe("shared Codex app-server client", () => {
802802 vi . spyOn ( CodexAppServerClient , "start" ) . mockReturnValueOnce ( first . client ) ;
803803
804804 const lease = getLeasedSharedCodexAppServerClient ( { timeoutMs : 1000 } ) ;
805- await sendInitializeResult ( first , "openclaw/0.142 .0 (macOS; test)" ) ;
805+ await sendInitializeResult ( first , "openclaw/0.143 .0 (macOS; test)" ) ;
806806 await expect ( lease ) . resolves . toBe ( first . client ) ;
807807
808808 // Routine cleanup detaches gracefully; a later terminal-idle kill must
@@ -828,7 +828,7 @@ describe("shared Codex app-server client", () => {
828828 vi . spyOn ( CodexAppServerClient , "start" ) . mockReturnValueOnce ( first . client ) ;
829829
830830 const lease = getLeasedSharedCodexAppServerClient ( { timeoutMs : 1000 } ) ;
831- await sendInitializeResult ( first , "openclaw/0.142 .0 (macOS; test)" ) ;
831+ await sendInitializeResult ( first , "openclaw/0.143 .0 (macOS; test)" ) ;
832832 await expect ( lease ) . resolves . toBe ( first . client ) ;
833833
834834 // Routine cleanup (e.g. one-shot bundle-MCP) must not yank a healthy
0 commit comments