From: Daniel Salzman Date: Sat, 21 Feb 2026 17:49:54 +0000 (+0100) Subject: tests-extra: avoid 'journal-content: None' in catalog templates X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=96d47cda170a79d208048d3e696923b02bce93c3;p=thirdparty%2Fknot-dns.git tests-extra: avoid 'journal-content: None' in catalog templates --- diff --git a/tests-extra/tools/dnstest/server.py b/tests-extra/tools/dnstest/server.py index f3e62c0228..0f4e43281b 100644 --- a/tests-extra/tools/dnstest/server.py +++ b/tests-extra/tools/dnstest/server.py @@ -1742,7 +1742,7 @@ class Knot(Server): s.id_item("id", "catalog-default") s.item_str("file", self.dir + "/catalog/%s.zone") s.item_str("zonefile-load", "difference") - s.item_str("journal-content", self.conf_zone(z).journal_content) + s.item_type("journal-content", self.conf_zone(z).journal_content) # this is weird but for the sake of testing, the cataloged zones inherit dnssec policy from catalog zone s.item_str("dnssec-signing", "on" if z.dnssec.enable else "off") @@ -1755,13 +1755,13 @@ class Knot(Server): s.id_item("id", "catalog-signed") s.item_str("file", self.dir + "/catalog/%s.zone") - s.item_str("journal-content", self.conf_zone(z).journal_content) + s.item_type("journal-content", self.conf_zone(z).journal_content) s.item_str("dnssec-signing", "on") self.config_xfr(z, s) s.id_item("id", "catalog-unsigned") s.item_str("file", self.dir + "/catalog/%s.zone") - s.item_str("journal-content", self.conf_zone(z).journal_content) + s.item_type("journal-content", self.conf_zone(z).journal_content) self.config_xfr(z, s) s.end()