Skip to content

Commit ada1af6

Browse files
committed
Fix typo in test_runner.py causing error
1 parent e782099 commit ada1af6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/test_runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def run_tests(test_list, src_dir, build_dir, exeext, tmpdir, jobs=1, enable_cove
342342
print('\n============')
343343
print('{}Combined log for {}:{}'.format(BOLD[1], testdir, BOLD[0]))
344344
print('============\n')
345-
combined_logs, _ = subprocess.Popen([sys.executble, os.path.join(tests_dir, 'combine_logs.py'), '-c', testdir], universal_newlines=True, stdout=subprocess.PIPE).communicate()
345+
combined_logs, _ = subprocess.Popen([sys.executable, os.path.join(tests_dir, 'combine_logs.py'), '-c', testdir], universal_newlines=True, stdout=subprocess.PIPE).communicate()
346346
print("\n".join(deque(combined_logs.splitlines(), combined_logs_len)))
347347

348348
print_results(test_results, max_len_name, (int(time.time() - time0)))

0 commit comments

Comments
 (0)