From 11b228971ae8738e4f9feaae89b50da54163fab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 21 Dec 2020 17:42:49 +0100 Subject: [PATCH] test: remove useless call to t.Logf() --- authorization_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/authorization_test.go b/authorization_test.go index 789b3c1f..1f85c75f 100644 --- a/authorization_test.go +++ b/authorization_test.go @@ -192,7 +192,6 @@ func TestAuthorizeAuthorizationHeaderRsaWithCert(t *testing.T) { r.Header.Add("Authorization", "Bearer "+validFullHeaderRsaForCert) claims, err := authorize(r, &jwtConfig{[]byte(certificateRsa), jwt.SigningMethodRS256}, []string{}) - t.Logf("%v", err) assert.Equal(t, []string{"foo", "bar"}, claims.Mercure.Publish) assert.Equal(t, []string{"foo", "baz"}, claims.Mercure.Subscribe) assert.Nil(t, err)