From fc64f8b99df0902a1bf6e33355c3c8e9eecbd9fd Mon Sep 17 00:00:00 2001 From: Michael Cross Date: Fri, 19 Feb 2016 10:19:03 +0000 Subject: [PATCH] DNS Challenge: Fix TestCheckAuthoritativeNss failure report --- acme/dns_challenge_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/dns_challenge_test.go b/acme/dns_challenge_test.go index 20090edc..e1e67efe 100644 --- a/acme/dns_challenge_test.go +++ b/acme/dns_challenge_test.go @@ -141,7 +141,7 @@ func TestCheckAuthoritativeNss(t *testing.T) { for _, tt := range checkAuthoritativeNssTests { ok, _ := checkAuthoritativeNss(tt.fqdn, tt.value, tt.ns) if ok != tt.ok { - t.Errorf("%s: got %t; want %t", tt.fqdn, tt.ok, tt.ok) + t.Errorf("%s: got %t; want %t", tt.fqdn, ok, tt.ok) } } }