From: Peter van Dijk Date: Tue, 7 Feb 2023 14:21:09 +0000 (+0100) Subject: regression-tests.auth-py/clientsubnetoption.py: fix equality operator X-Git-Tag: auth-4.9.0-alpha1^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75970d08f3e690015e5de30822f6c0b829935196;p=thirdparty%2Fpdns.git regression-tests.auth-py/clientsubnetoption.py: fix equality operator --- 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