From 4bbc758ee33c4be476beea9079c93cc88714b2d1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 9 May 2026 00:53:35 +0100 Subject: [PATCH] test: align memory sqlite repair expectation --- extensions/memory-core/src/cli.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/memory-core/src/cli.test.ts b/extensions/memory-core/src/cli.test.ts index e6787837e74..cdb8c816242 100644 --- a/extensions/memory-core/src/cli.test.ts +++ b/extensions/memory-core/src/cli.test.ts @@ -578,7 +578,7 @@ describe("memory cli", () => { const log = spyRuntimeLogs(defaultRuntime); await runMemoryCli(["status", "--fix"]); - expectLogged(log, "Repair: no changes"); + expectLogged(log, "Repair: rewrote store"); const entries = await readShortTermRecallEntries({ workspaceDir }); expect(entries[0]?.conceptTags).toContain("router"); expect(close).toHaveBeenCalled();