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:
@@ -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") {
|
||||
|
||||
Reference in New Issue
Block a user