fix(test): align assertions after cherry-pick merge from 3 worktrees

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
ismeth
2026-03-01 17:39:10 +01:00
committed by YeonGyu-Kim
parent 8938e51596
commit 951f004a65
2 changed files with 4 additions and 4 deletions
@@ -103,7 +103,7 @@ describe("sessionHasCouncilResponse", () => {
})
describe("#given assistant message with complete council response in longer text", () => {
it("#when tag appears mid-text #then should return true", async () => {
it("#when tag appears mid-text #then should return false (structural matching rejects inline tags)", async () => {
//#given
const client = createMockClient([
{
@@ -121,7 +121,7 @@ describe("sessionHasCouncilResponse", () => {
const result = await sessionHasCouncilResponse(client, "ses-buried-tag")
//#then
expect(result).toBe(true)
expect(result).toBe(false)
})
})