From 75970d08f3e690015e5de30822f6c0b829935196 Mon Sep 17 00:00:00 2001 From: Peter van Dijk Date: Tue, 7 Feb 2023 15:21:09 +0100 Subject: [PATCH] regression-tests.auth-py/clientsubnetoption.py: fix equality operator --- regression-tests.auth-py/clientsubnetoption.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/regression-tests.auth-py/clientsubnetoption.py b/regression-tests.auth-py/clientsubnetoption.py index 5da748ab0b..ca956fa747 100644 --- a/regression-tests.auth-py/clientsubnetoption.py +++ b/regression-tests.auth-py/clientsubnetoption.py @@ -231,6 +231,8 @@ class ClientSubnetOption(dns.edns.Option): return False if self.mask != other.mask: return False + if self.scope != other.scope: + return False if self.family != other.family: return False return True -- 2.47.3