forked from TrueCloudLab/lego
DNS Challenge: Fix TestCheckAuthoritativeNss failure report
This commit is contained in:
parent
9900bf675a
commit
fc64f8b99d
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ func TestCheckAuthoritativeNss(t *testing.T) {
|
||||||
for _, tt := range checkAuthoritativeNssTests {
|
for _, tt := range checkAuthoritativeNssTests {
|
||||||
ok, _ := checkAuthoritativeNss(tt.fqdn, tt.value, tt.ns)
|
ok, _ := checkAuthoritativeNss(tt.fqdn, tt.value, tt.ns)
|
||||||
if ok != tt.ok {
|
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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue