From 92d6d41f0cc3170d6fd2fd99ee65f550ab9ec319 Mon Sep 17 00:00:00 2001 From: Shane Lee Date: Fri, 15 Mar 2024 09:02:41 -0600 Subject: [PATCH] Revert weird change --- tests/support/pkg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/support/pkg.py b/tests/support/pkg.py index 404aa015ef7..6163415d00b 100644 --- a/tests/support/pkg.py +++ b/tests/support/pkg.py @@ -199,7 +199,7 @@ class SaltPkgInstall: Default location for salt configurations """ if platform.is_windows(): - config_path = pathlib.Path(os.getenv("ProgramData"), "Salt Project", "Salt") + config_path = pathlib.Path("C:\\salt", "etc", "salt") else: config_path = pathlib.Path("/etc", "salt") return config_path @@ -413,7 +413,7 @@ class SaltPkgInstall: if system_service is False: return None if platform.is_windows(): - return pathlib.Path("C:\\Program Files", "Salt Project", "Salt") + return pathlib.Path("C:\\salt") if platform.is_darwin(): return pathlib.Path("/opt/salt") return pathlib.Path("/")