From: Remi Gacogne Date: Tue, 1 Feb 2022 10:23:45 +0000 (+0100) Subject: dnsdist: Unbreak 'ContinueAction' regression tests X-Git-Tag: auth-4.7.0-alpha1~30^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ed2a940f34e21d15944310509c51952fac5e098;p=thirdparty%2Fpdns.git dnsdist: Unbreak 'ContinueAction' regression tests --- diff --git a/regression-tests.dnsdist/test_RulesActions.py b/regression-tests.dnsdist/test_RulesActions.py index 66de62a185..6468502f04 100644 --- a/regression-tests.dnsdist/test_RulesActions.py +++ b/regression-tests.dnsdist/test_RulesActions.py @@ -1334,10 +1334,11 @@ class TestAdvancedContinueAction(DNSDistTest): for method in ("sendUDPQuery", "sendTCPQuery"): sender = getattr(self, method) (receivedQuery, receivedResponse) = sender(query, response) + expectedQuery.id = receivedQuery.id self.assertEqual(receivedQuery, expectedQuery) self.assertEqual(receivedResponse, expectedResponse) - def testNoContinue(self): + def testContinue(self): """ Advanced: Query routed to pool, ContinueAction() should not stop the processing """