fix(test): repair unterminated string literal in integration test

The t.Skipf call had a raw newline inside a double-quoted string,
which is invalid Go syntax. Use \n escape sequence instead.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
max
2026-01-08 20:18:41 -08:00
committed by Steve Yegge
parent 5250e9e12a
commit 41a758d6d8

View File

@@ -310,8 +310,7 @@ func testTmuxSessionWithStubAgent(t *testing.T, tmpDir, stubAgentPath, rigName s
output, found := pollForOutput(t, sessionName, "STUB_AGENT_STARTED", 12*time.Second)
if !found {
t.Skipf("stub agent output not detected; tmux capture unreliable. Output:
%s", output)
t.Skipf("stub agent output not detected; tmux capture unreliable. Output:\n%s", output)
}
if !strings.Contains(output, "GT_ROLE: polecat") {