From 11578aa2199d665ab70cadddccbc82fd5ce2f26a Mon Sep 17 00:00:00 2001 From: Matthijs Mekking Date: Wed, 26 Nov 2025 08:31:45 +0100 Subject: [PATCH] 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. --- bin/tests/system/multisigner/tests_multisigner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/tests/system/multisigner/tests_multisigner.py b/bin/tests/system/multisigner/tests_multisigner.py index 80288aee6d..69f644d40d 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)