From 74c4614054280b3548d351e16368c2c34430c48d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ensar=20Saraj=C4=8Di=C4=87?= Date: Fri, 7 Feb 2025 15:13:13 +0100 Subject: [PATCH] Fix listener naming in `RemotePoolLogger` TCP tests --- regression-tests.dnsdist/test_Dnstap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests.dnsdist/test_Dnstap.py b/regression-tests.dnsdist/test_Dnstap.py index d19ee1cb7b..cda2a3e834 100644 --- a/regression-tests.dnsdist/test_Dnstap.py +++ b/regression-tests.dnsdist/test_Dnstap.py @@ -529,7 +529,7 @@ class TestDnstapOverRemotePoolTcpLogger(DNSDistTest): """ @classmethod - def FrameStreamUnixListener(cls, port): + def FrameStreamTcpListener(cls, port): sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: sock.bind(("127.0.0.1", port)) -- 2.47.2