From: Matthijs Mekking Date: Wed, 1 Oct 2025 14:35:20 +0000 (+0200) Subject: Remove KeyProperties property expect X-Git-Tag: v9.21.15~74^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ade333bb64c954eb6a03198dd7a1e1676164dec0;p=thirdparty%2Fbind9.git Remove KeyProperties property expect This property is unused, so we can just remove it. --- diff --git a/bin/tests/system/isctest/kasp.py b/bin/tests/system/isctest/kasp.py index 6223e5cbb12..16f968bc10f 100644 --- a/bin/tests/system/isctest/kasp.py +++ b/bin/tests/system/isctest/kasp.py @@ -190,7 +190,6 @@ class KeyProperties: @staticmethod def default(with_state=True) -> "KeyProperties": properties = { - "expect": True, "private": True, "legacy": False, "role": "csk", @@ -552,9 +551,6 @@ class Key: """ Check the key with given properties. """ - if not properties.properties["expect"]: - return False - # Check file existence. # Noop. If file is missing then the get_metadata calls will fail. @@ -1523,7 +1519,6 @@ def policy_to_properties(ttl, keys: List[str]) -> List[KeyProperties]: count += 1 line = key.split() keyprop = KeyProperties(f"KEY{count}", {}, {}, {}) - keyprop.properties["expect"] = True keyprop.properties["private"] = True keyprop.properties["legacy"] = False keyprop.properties["offset"] = timedelta(0)