From e0569e766a6a319a6513352cbf452d3a9997b879 Mon Sep 17 00:00:00 2001 From: Chetanya Kandhari Date: Wed, 14 Nov 2018 20:14:40 +0530 Subject: [PATCH] Update handlers_test.go (#9775) --- web/handlers_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/handlers_test.go b/web/handlers_test.go index 2756e143ea..976ee73bc1 100644 --- a/web/handlers_test.go +++ b/web/handlers_test.go @@ -33,8 +33,8 @@ func TestHandlerServeHTTPErrors(t *testing.T) { mobile bool redirect bool }{ - {"redirect on destkop non-api endpoint", "/login/sso/saml", false, true}, - {"not redirect on destkop api endpoint", "/api/v4/test", false, false}, + {"redirect on desktop non-api endpoint", "/login/sso/saml", false, true}, + {"not redirect on desktop api endpoint", "/api/v4/test", false, false}, {"not redirect on mobile non-api endpoint", "/login/sso/saml", true, false}, {"not redirect on mobile api endpoint", "/api/v4/test", true, false}, }