From 2fd64161c1ae4a8930e9b6094804ac9976a9f2ad Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Tue, 16 May 2023 16:55:57 -0700 Subject: Fix hard-coded interpreter in test_async_wrapper (#80816) --- test/units/modules/test_async_wrapper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/units/modules/test_async_wrapper.py b/test/units/modules/test_async_wrapper.py index 70f8db8d66..dbaf6834cd 100644 --- a/test/units/modules/test_async_wrapper.py +++ b/test/units/modules/test_async_wrapper.py @@ -7,6 +7,7 @@ __metaclass__ = type import os import json import shutil +import sys import tempfile from ansible.modules import async_wrapper @@ -17,11 +18,10 @@ class TestAsyncWrapper: def test_run_module(self, monkeypatch): def mock_get_interpreter(module_path): - return ['/usr/bin/python'] + return [sys.executable] module_result = {'rc': 0} module_lines = [ - '#!/usr/bin/python', 'import sys', 'sys.stderr.write("stderr stuff")', "print('%s')" % json.dumps(module_result) -- cgit v1.2.1