From 7e663971fd42126f6d5ca863b6de365286141941 Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Wed, 4 Apr 2018 17:39:11 +0100 Subject: [PATCH] Fix typo --- pkg/issuer/acme/client/fake.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/issuer/acme/client/fake.go b/pkg/issuer/acme/client/fake.go index 514bba851..d4acbd676 100644 --- a/pkg/issuer/acme/client/fake.go +++ b/pkg/issuer/acme/client/fake.go @@ -10,7 +10,7 @@ import ( // TODO: expand this out one day to be backed by the pebble wfe package // this will allow us to simulate a 'real' acme server in lightweight tests -// FakeACME is a convinience structure to create a stub ACME implementation +// FakeACME is a convenience structure to create a stub ACME implementation type FakeACME struct { FakeCreateOrder func(ctx context.Context, order *acme.Order) (*acme.Order, error) FakeGetOrder func(ctx context.Context, url string) (*acme.Order, error)