Skip to content

Commit 917843a

Browse files
toothbrushclaude
andcommitted
Update login integration tests for 'Login complete.' wording.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Entire-Checkpoint: f8442932682e
1 parent 682b099 commit 917843a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/entire/cli/integration_test/login_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func TestLogin_SavesTokenAfterApproval(t *testing.T) {
9696
t.Fatalf("output missing wait message:\n%s", output)
9797
}
9898

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

@@ -142,7 +142,7 @@ func TestLogin_ExpiredFlow(t *testing.T) {
142142
t.Fatalf("expected expired message, got:\n%s", output)
143143
}
144144

145-
if strings.Contains(output, "login complete.") {
145+
if strings.Contains(output, "Login complete.") {
146146
t.Fatal("output should NOT contain login complete for expired flow")
147147
}
148148
}
@@ -181,7 +181,7 @@ func TestLogin_DeniedFlow(t *testing.T) {
181181
t.Fatalf("expected denied message, got:\n%s", output)
182182
}
183183

184-
if strings.Contains(output, "login complete.") {
184+
if strings.Contains(output, "Login complete.") {
185185
t.Fatal("output should NOT contain login complete for denied flow")
186186
}
187187
}

0 commit comments

Comments
 (0)