From c58b192b86ddf25522c37cc3bdb1281ca0aefdee Mon Sep 17 00:00:00 2001 From: "Gareth J. Greenaway" Date: Thu, 2 Feb 2023 15:25:39 -0800 Subject: [PATCH] swapping self.salt_pkg_install.run_root for self..run_root --- pkg/tests/support/helpers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/tests/support/helpers.py b/pkg/tests/support/helpers.py index 11941599cbd..64e2df2de0f 100644 --- a/pkg/tests/support/helpers.py +++ b/pkg/tests/support/helpers.py @@ -301,9 +301,7 @@ class SaltPkgInstall: "python": [self.install_dir / "bin" / "python3"], } else: - if self.salt_pkg_install.run_root and os.path.exists( - self.salt_pkg_install.run_root - ): + if self.run_root and os.path.exists(self.run_root): self.binary_paths = { "salt": [str(self.run_root)], "api": [str(self.run_root), "api"],