From: Ensar Sarajčić Date: Fri, 7 Feb 2025 14:13:13 +0000 (+0100) Subject: Fix listener naming in `RemotePoolLogger` TCP tests X-Git-Tag: dnsdist-2.0.0-alpha1~111^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74c4614054280b3548d351e16368c2c34430c48d;p=thirdparty%2Fpdns.git Fix listener naming in `RemotePoolLogger` TCP tests --- 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))