From 49b18b8af6a6ffbf7b7f13d23ae1023a13b209c4 Mon Sep 17 00:00:00 2001 From: Ville Vesilehto Date: Fri, 27 Mar 2026 05:33:55 +0200 Subject: [PATCH] test(dnssec): fix err in TestZoneSigningDouble (#7969) --- plugin/dnssec/dnssec_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/dnssec/dnssec_test.go b/plugin/dnssec/dnssec_test.go index 786c92608..ec79ce5b1 100644 --- a/plugin/dnssec/dnssec_test.go +++ b/plugin/dnssec/dnssec_test.go @@ -48,10 +48,10 @@ func TestZoneSigningDouble(t *testing.T) { state := request.Request{Req: m, Zone: "miek.nl."} m = d.Sign(state, time.Now().UTC(), server) if !section(m.Answer, 2) { - t.Errorf("Answer section should have 1 RRSIG") + t.Errorf("Answer section should have 2 RRSIGs") } if !section(m.Ns, 2) { - t.Errorf("Authority section should have 1 RRSIG") + t.Errorf("Authority section should have 2 RRSIGs") } }