From fd39e50c08f3f31cb73998c29590983849d306ef Mon Sep 17 00:00:00 2001 From: Cesar Celis Hernandez Date: Mon, 1 Aug 2022 15:09:07 -0400 Subject: [PATCH] Updating SSO Error Message on bad login (#2215) Updating error message on bad sso login --- sso-integration/sso_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sso-integration/sso_test.go b/sso-integration/sso_test.go index 06b1c9b2a..b5e0e8766 100644 --- a/sso-integration/sso_test.go +++ b/sso-integration/sso_test.go @@ -254,5 +254,5 @@ func TestBadLogin(t *testing.T) { fmt.Println(response) fmt.Println(err) expectedError := response.Status - assert.Equal("401 Unauthorized", expectedError) + assert.Equal("500 Internal Server Error", expectedError) }