diff options
Diffstat (limited to 'tests/install_test.py')
-rw-r--r-- | tests/install_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/install_test.py b/tests/install_test.py index e2d86ec2..c02c04a3 100644 --- a/tests/install_test.py +++ b/tests/install_test.py @@ -22,7 +22,7 @@ f.close() # running it args = [sys.executable] + ['bootstrap.py'] if is_jython: - res = subprocess.call([sys.executable] + args) + res = subprocess.call(args) else: res = os.spawnv(os.P_WAIT, sys.executable, args) @@ -59,7 +59,7 @@ finally: try: args = [sys.executable] + [script_name] if is_jython: - res = subprocess.call([sys.executable] + args) + res = subprocess.call(args) else: res = os.spawnv(os.P_WAIT, sys.executable, args) |