mirror of
https://github.com/outbackdingo/certificates.git
synced 2026-01-27 10:18:34 +00:00
Fix types in tests.
This commit is contained in:
@@ -20,6 +20,7 @@ import (
|
||||
"github.com/smallstep/assert"
|
||||
"github.com/smallstep/certificates/api"
|
||||
"github.com/smallstep/certificates/authority"
|
||||
"github.com/smallstep/certificates/authority/provisioner"
|
||||
"github.com/smallstep/cli/crypto/keys"
|
||||
"github.com/smallstep/cli/crypto/pemutil"
|
||||
"github.com/smallstep/cli/crypto/randutil"
|
||||
@@ -389,7 +390,7 @@ func TestCAProvisionerEncryptedKey(t *testing.T) {
|
||||
}
|
||||
},
|
||||
"ok": func(t *testing.T) *ekt {
|
||||
p := config.AuthorityConfig.Provisioners[2]
|
||||
p := config.AuthorityConfig.Provisioners[2].(*provisioner.JWK)
|
||||
return &ekt{
|
||||
ca: ca,
|
||||
kid: p.Key.KeyID,
|
||||
|
||||
@@ -14,7 +14,7 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/smallstep/certificates/api"
|
||||
"github.com/smallstep/certificates/authority"
|
||||
"github.com/smallstep/certificates/authority/provisioner"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -391,7 +391,7 @@ func TestClient_Renew(t *testing.T) {
|
||||
|
||||
func TestClient_Provisioners(t *testing.T) {
|
||||
ok := &api.ProvisionersResponse{
|
||||
Provisioners: []*authority.Provisioner{},
|
||||
Provisioners: provisioner.List{},
|
||||
}
|
||||
internalServerError := api.InternalServerError(fmt.Errorf("Internal Server Error"))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user