From ce2f65c4156e5f85b3e168cb7701300e3a85b681 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Wed, 15 Apr 2026 00:28:03 +0200 Subject: [PATCH] pytest: fix dnsd pid filename Spotted by GitHub Code Quality Follow-up to a5542c23e7427b8ea8f6183f503f2935d88d5d65 #21289 Closes #21321 --- tests/http/testenv/dnsd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/http/testenv/dnsd.py b/tests/http/testenv/dnsd.py index e7345cdc5a..830d02491a 100644 --- a/tests/http/testenv/dnsd.py +++ b/tests/http/testenv/dnsd.py @@ -54,7 +54,7 @@ class Dnsd: self._lock_dir = os.path.join(self._dnsd_dir, 'lock') self._log_file = os.path.join(self._log_dir, 'dnsd.log') self._conf_file = os.path.join(self._log_dir, 'dnsd.cmd') - self._pid_file = os.path.join(self._log_dir, 'dante.pid') + self._pid_file = os.path.join(self._log_dir, 'dnsd.pid') self._error_log = os.path.join(self._log_dir, 'dnsd.err.log') self._process = None