Skip to content

Commit

Permalink
bugfix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Anson.G authored and Anson.G committed Oct 17, 2023
1 parent c8550b5 commit 5822574
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/acme/acme_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ import (
"github.com/go-acme/lego/v4/acme"
"github.com/go-jose/go-jose/v3/json"
"github.com/go-playground/assert/v2"
"sync"
"testing"
)

func TestReqCertificate(t *testing.T) {

acmeProvider := &AcmeProvider{}
acmeProvider := &AcmeProvider{
MemoryCache: &sync.Map{},
}

type args struct {
CADirURL string
Expand Down

0 comments on commit 5822574

Please sign in to comment.