diff options
Diffstat (limited to 'tests-extra/tests/dnssec/ksk_rollover')
-rw-r--r-- | tests-extra/tests/dnssec/ksk_rollover/test.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests-extra/tests/dnssec/ksk_rollover/test.py b/tests-extra/tests/dnssec/ksk_rollover/test.py index f1e3c4c13..e871d8a30 100644 --- a/tests-extra/tests/dnssec/ksk_rollover/test.py +++ b/tests-extra/tests/dnssec/ksk_rollover/test.py @@ -25,10 +25,10 @@ def check_zone(server, zone, slave, dnskeys, dnskey_rrsigs, cdnskeys, soa_rrsigs qsoa = server.dig("example.com", "SOA", dnssec=True, bufsize=4096) found_soa_rrsigs = qsoa.count("RRSIG") - check_log("DNSKEYs: %d (expected %d)" % (found_dnskeys, dnskeys)); - check_log("RRSIGs: %d (expected %d)" % (found_soa_rrsigs, soa_rrsigs)); - check_log("DNSKEY-RRSIGs: %d (expected %d)" % (found_rrsigs, dnskey_rrsigs)); - check_log("CDNSKEYs: %d (expected %d)" % (found_cdnskeys, cdnskeys)); + check_log("DNSKEYs: %d (expected %d)" % (found_dnskeys, dnskeys)) + check_log("RRSIGs: %d (expected %d)" % (found_soa_rrsigs, soa_rrsigs)) + check_log("DNSKEY-RRSIGs: %d (expected %d)" % (found_rrsigs, dnskey_rrsigs)) + check_log("CDNSKEYs: %d (expected %d)" % (found_cdnskeys, cdnskeys)) if found_dnskeys != dnskeys: set_err("BAD DNSKEY COUNT: " + msg) |