mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-01-15 15:36:29 +03:00
style: make fmt
This commit is contained in:
parent
283d883e5a
commit
4f92b738b5
1 changed files with 7 additions and 7 deletions
|
@ -735,13 +735,13 @@ func TestSignInOauthCallbackSyncSSHKeys(t *testing.T) {
|
||||||
|
|
||||||
for _, tt := range []struct {
|
for _, tt := range []struct {
|
||||||
name string
|
name string
|
||||||
rawData map[string]interface{}
|
rawData map[string]any
|
||||||
parsedKeySets []string
|
parsedKeySets []string
|
||||||
}{
|
}{
|
||||||
{
|
{
|
||||||
name: "Add keys",
|
name: "Add keys",
|
||||||
rawData: map[string]interface{}{
|
rawData: map[string]any{
|
||||||
"sshpubkey": []interface{}{
|
"sshpubkey": []any{
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINDRDoephkaFELacrNNe2fqAwedhRB1MKOpLEHlPuczO nocomment",
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINDRDoephkaFELacrNNe2fqAwedhRB1MKOpLEHlPuczO nocomment",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -751,8 +751,8 @@ func TestSignInOauthCallbackSyncSSHKeys(t *testing.T) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Update keys",
|
name: "Update keys",
|
||||||
rawData: map[string]interface{}{
|
rawData: map[string]any{
|
||||||
"sshpubkey": []interface{}{
|
"sshpubkey": []any{
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMLLMOLFMouSJmzOASKKv178d+7op4utSxcugF9tVVch nocomment",
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMLLMOLFMouSJmzOASKKv178d+7op4utSxcugF9tVVch nocomment",
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGyDh9sg1IGQGa0U363wcGXrDlGBhZI3UHvS7we/0d+T nocomment",
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGyDh9sg1IGQGa0U363wcGXrDlGBhZI3UHvS7we/0d+T nocomment",
|
||||||
},
|
},
|
||||||
|
@ -764,8 +764,8 @@ func TestSignInOauthCallbackSyncSSHKeys(t *testing.T) {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Remove keys",
|
name: "Remove keys",
|
||||||
rawData: map[string]interface{}{
|
rawData: map[string]any{
|
||||||
"sshpubkey": []interface{}{},
|
"sshpubkey": []any{},
|
||||||
},
|
},
|
||||||
parsedKeySets: []string{},
|
parsedKeySets: []string{},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue