summaryrefslogtreecommitdiff
path: root/internal/oauth/oauth_test.go
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-11-28 14:30:55 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-11-28 14:30:55 +0100
commitbb760ad9036b586fd4f07b96623e8421e1dccaf0 (patch)
treec06fa76d5fe89dadb3e7ad6d4f2c1d5fe6f94912 /internal/oauth/oauth_test.go
parent0bfb35520d7e138e6219e550187e0b55bc8a29ac (diff)
Formatting: Run golines
Diffstat (limited to 'internal/oauth/oauth_test.go')
-rw-r--r--internal/oauth/oauth_test.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/oauth/oauth_test.go b/internal/oauth/oauth_test.go
index 2427220..693984e 100644
--- a/internal/oauth/oauth_test.go
+++ b/internal/oauth/oauth_test.go
@@ -14,7 +14,10 @@ func Test_verifiergen(t *testing.T) {
// Verifier must be at minimum 43 and at max 128 characters...
// However... Our verifier is exactly 43!
if len(verifier) != 43 {
- t.Fatalf("Got verifier length: %d, want a verifier with at least 43 characters", len(verifier))
+ t.Fatalf(
+ "Got verifier length: %d, want a verifier with at least 43 characters",
+ len(verifier),
+ )
}
_, unescapeErr := url.QueryUnescape(verifier)