DNS Challenge: Fix TestCheckAuthoritativeNss failure report

This commit is contained in:
Michael Cross 2016-02-19 10:19:03 +00:00
parent 9900bf675a
commit fc64f8b99d

View file

@ -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)
}
}
}