aboutsummaryrefslogtreecommitdiffstats
path: root/models/auth/webauthn_test.go
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2022-01-15 16:52:56 +0000
committerGitHub <noreply@github.com>2022-01-15 17:52:56 +0100
commitd7c2a2951c6a0a85f43675c83d3d639cd50eccb4 (patch)
tree52d4147b19fa6615f76fb3b8e8fadef948c5bd89 /models/auth/webauthn_test.go
parente239d354c9bd80cdc1606dabd7a4de62708b742e (diff)
downloadgitea-d7c2a2951c6a0a85f43675c83d3d639cd50eccb4.tar.gz
gitea-d7c2a2951c6a0a85f43675c83d3d639cd50eccb4.zip
Webauthn nits (#18284)
This contains some additional fixes and small nits related to #17957 Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'models/auth/webauthn_test.go')
-rw-r--r--models/auth/webauthn_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/auth/webauthn_test.go b/models/auth/webauthn_test.go
index 572636dbbf..216bf11080 100644
--- a/models/auth/webauthn_test.go
+++ b/models/auth/webauthn_test.go
@@ -5,7 +5,7 @@
package auth
import (
- "encoding/base64"
+ "encoding/base32"
"testing"
"code.gitea.io/gitea/models/unittest"
@@ -61,7 +61,7 @@ func TestCreateCredential(t *testing.T) {
res, err := CreateCredential(1, "WebAuthn Created Credential", &webauthn.Credential{ID: []byte("Test")})
assert.NoError(t, err)
assert.Equal(t, "WebAuthn Created Credential", res.Name)
- bs, err := base64.RawStdEncoding.DecodeString(res.CredentialID)
+ bs, err := base32.HexEncoding.DecodeString(res.CredentialID)
assert.NoError(t, err)
assert.Equal(t, []byte("Test"), bs)