Skip to content

Commit 932b6a9

Browse files
committed
python-setup: Fix path for tests
1 parent 259993b commit 932b6a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python-setup/tests/from_python_exe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def get_details(path_to_python_exe: str) -> Tuple[str, str]:
99
import_path = subprocess.check_output(
1010
[
1111
path_to_python_exe,
12-
os.path.join(os.path.dirname(__file__), "find_site_packages.py")
12+
os.path.join(os.path.dirname(__file__), "..", "find_site_packages.py")
1313
],
1414
stdin=subprocess.DEVNULL,
1515
)

0 commit comments

Comments
 (0)