From 8b17e3378b8361cf31fe5811338fa23b74b5bb7c Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 10 Nov 2025 07:07:50 -0500 Subject: [PATCH] Fix reference to class variable Co-authored-by: Peter van Dijk Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- regression-tests.dnsdist/test_DOH.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests.dnsdist/test_DOH.py b/regression-tests.dnsdist/test_DOH.py index 2ef99f7de2..79cd317b46 100644 --- a/regression-tests.dnsdist/test_DOH.py +++ b/regression-tests.dnsdist/test_DOH.py @@ -395,7 +395,7 @@ class DOHTests(object): self.assertEqual(len(lines), 2) metrics = lines[1].split() self.assertEqual(len(metrics), 15) - return int(metrics[metricMap[name]]) + return int(metrics[self.metricMap[name]]) def testDOHHTTP1(self): """ -- 2.47.3