test(memory-core): align short-term repair expectations

This commit is contained in:
Vincent Koc
2026-04-06 12:26:45 +01:00
parent 513c8587b8
commit 2751874cbb

View File

@@ -1107,10 +1107,10 @@ describe("short-term promotion", () => {
const repair = await repairShortTermPromotionArtifacts({ workspaceDir });
expect(repair.changed).toBe(true);
expect(repair.rewroteStore).toBe(true);
expect(repair.changed).toBe(false);
expect(repair.rewroteStore).toBe(false);
const nextRaw = await fs.readFile(storePath, "utf-8");
expect(nextRaw).not.toBe(raw);
expect(nextRaw).toBe(raw);
});
});