From 5ed2a940f34e21d15944310509c51952fac5e098 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Tue, 1 Feb 2022 11:23:45 +0100 Subject: [PATCH] dnsdist: Unbreak 'ContinueAction' regression tests --- regression-tests.dnsdist/test_RulesActions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 """ -- 2.47.2