From 1ea481bb73ef4ed565b8a62c3801fd723a1cb316 Mon Sep 17 00:00:00 2001 From: Martin Heide Date: Mon, 2 Nov 2020 12:52:52 +0000 Subject: [PATCH] Fix gofmt in oauth2_test.go Signed-off-by: Martin Heide --- server/oauth2_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/oauth2_test.go b/server/oauth2_test.go index f75015f0..1d9fa083 100644 --- a/server/oauth2_test.go +++ b/server/oauth2_test.go @@ -373,7 +373,7 @@ func TestValidRedirectURI(t *testing.T) { // Both Public + RedirectURIs configured: Could e.g. be a PKCE-enabled web app. { client: storage.Client{ - Public: true, + Public: true, RedirectURIs: []string{"http://foo.com/bar"}, }, redirectURI: "http://foo.com/bar", @@ -381,7 +381,7 @@ func TestValidRedirectURI(t *testing.T) { }, { client: storage.Client{ - Public: true, + Public: true, RedirectURIs: []string{"http://foo.com/bar"}, }, redirectURI: "http://foo.com/bar/baz",