From 0f04f2fd44aa553645109c846e453248b49abba7 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Tue, 9 Aug 2016 14:57:17 +0900 Subject: [PATCH] fix typo --- caddytls/certificates_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddytls/certificates_test.go b/caddytls/certificates_test.go index 02f46cf1..32825500 100644 --- a/caddytls/certificates_test.go +++ b/caddytls/certificates_test.go @@ -43,7 +43,7 @@ func TestCacheCertificate(t *testing.T) { t.Error("Expected first cert to be cached by key 'example.com', but it wasn't") } if _, ok := certCache["sub.example.com"]; !ok { - t.Error("Expected first cert to be cached by key 'sub.exmaple.com', but it wasn't") + t.Error("Expected first cert to be cached by key 'sub.example.com', but it wasn't") } if cert, ok := certCache[""]; !ok || cert.Names[2] != "" { t.Error("Expected first cert to be cached additionally as the default certificate with empty name added, but it wasn't")