From bf954abd4fa608908a5c82436d2bc43a0fe00f54 Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Thu, 22 Feb 2024 12:54:14 +0100 Subject: [PATCH] Fix python shebang Signed-off-by: Cristian Le --- test-suite/clean_tests | 2 +- test-suite/run_tests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test-suite/clean_tests b/test-suite/clean_tests index 83a679cff..f766872c6 100755 --- a/test-suite/clean_tests +++ b/test-suite/clean_tests @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ This script runs the tests either asking interactively if you want to run only one, or runs them all with the proper command-line options. diff --git a/test-suite/run_tests b/test-suite/run_tests index 32af96865..204c883fc 100755 --- a/test-suite/run_tests +++ b/test-suite/run_tests @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 """ This script runs the tests either asking interactively if you want to run only one, or runs them all with the proper command-line options.