From: Matthijs Mekking Date: Wed, 26 Nov 2025 07:31:45 +0000 (+0100) Subject: Update misleading comments in multisigner test X-Git-Tag: v9.21.16~12^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11578aa2199d665ab70cadddccbc82fd5ce2f26a;p=thirdparty%2Fbind9.git Update misleading comments in multisigner test We are not actually retrieving these records from the other provider, they are available as key files to us and we are using those files to send a dynamic update to the server. --- diff --git a/bin/tests/system/multisigner/tests_multisigner.py b/bin/tests/system/multisigner/tests_multisigner.py index 80288aee6da..69f644d40d6 100644 --- a/bin/tests/system/multisigner/tests_multisigner.py +++ b/bin/tests/system/multisigner/tests_multisigner.py @@ -284,7 +284,7 @@ def check_add_cdnskey(server, zone, keys, expected, extra_keys, extra, primary=N f"- zone {zone} {primary.identifier}: update zone with CDNSKEY from other providers" ) - # Retrieve CDNSKEY records from the other providers. + # Update the server with the CDNSKEY record from the other providers. update_msg = dns.update.UpdateMessage(zone) for ksk in extra_keys: dnskey = ksk.dnskey().split() @@ -400,7 +400,7 @@ def check_add_cds(server, zone, keys, expected, extra_keys, extra, primary=None) f"- zone {zone} {primary.identifier}: update zone with CDS from other providers" ) - # Retrieve CDS records from the other providers. + # Update the server with the CDS record from the other providers. update_msg = dns.update.UpdateMessage(zone) for ksk in extra_keys: ds = dsfromkey(ksk)