File tree Expand file tree Collapse file tree
cmd/entire/cli/integration_test Expand file tree Collapse file tree Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments