Skip to content

Commit e299749

Browse files
committed
fix: correct test expectation - collected 1 not 2 text(s) after counter formula revert (e5b5e5b)
1 parent a902d3d commit e299749

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/smart-extractor-branches.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,8 @@ assert.ok(
971971
);
972972
assert.ok(
973973
rememberCommandContextLogs.some((entry) =>
974-
entry[1].includes("auto-capture collected 2 text(s)")
974+
// e5b5e5b: counter=(prev+eligible.length) -> Turn2 cumulative=3, but dedup leaves texts.length=1
975+
entry[1].includes("auto-capture collected 1 text(s)")
975976
),
976977
);
977978

0 commit comments

Comments
 (0)