Update login integration tests for 'Login complete.' wording. · Entire

Update login integration tests for 'Login complete.' wording.

917843a→main·

toothbrush·1mo ago·1 file·+3 added/-3 removed

Co-Authored-By: Claude Opus 4.8 (1M context) noreply@anthropic.com

Sessions

f8442932682eView transcript

[?
Fix Test Failures From Cosmetic ChangeClaude Code·Opus 4.8[1m]·1 step](/content/gh/entireio/cli/session/2aba93bf-5938-4d4c-a7ca-06b479ff5a22#timeline-f8442932682e/index.html)

Changes

1

95 unmodified lines

96
97
98
99
99
100
101
102
39 unmodified lines

142
143
144
145
145
146
147
148
32 unmodified lines

181
182
183
184
184
185
186
187

95 unmodified lines

t.Fatalf("output missing wait message:\n%s", output)
    }

if !strings.Contains(output, "login complete.") {
    if !strings.Contains(output, "Login complete.") {
        t.Fatalf("output missing login complete message (token save likely failed):\n%s", output)
    }

39 unmodified lines

t.Fatalf("expected expired message, got:\n%s", output)
    }

if strings.Contains(output, "login complete.") {
    if strings.Contains(output, "Login complete.") {
        t.Fatal("output should NOT contain login complete for expired flow")
    }
}
32 unmodified lines

t.Fatalf("expected denied message, got:\n%s", output)
    }

if strings.Contains(output, "login complete.") {
    if strings.Contains(output, "Login complete.") {
        t.Fatal("output should NOT contain login complete for denied flow")
    }
}

Mcmd/entire/cli/integration_test/login_test.go+3/-3