diff --git a/test/test_hooks/wrapper.sh b/test/test_hooks/wrapper.sh index f34d8dfe5..276ce817b 100644 --- a/test/test_hooks/wrapper.sh +++ b/test/test_hooks/wrapper.sh @@ -6,7 +6,7 @@ IN="${ORIGINALHOOK}.log.in" OUT="${ORIGINALHOOK}.log.out" # Let it know that we were executed -echo "% Called at $(python -c 'import time; print(time.time())') with '$@'" >> ${IN} +echo "% Called at $(python3 -c 'import time; print(time.time())') with '$@'" >> ${IN} # Log what arrives via stdin to ${IN} and what comes via stdout to ${OUT} $ORIGINALHOOK "$@" < <(tee -a ${IN}) > >(tee -a ${OUT})