summaryrefslogtreecommitdiffstats
path: root/tests/shell
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell')
-rwxr-xr-xtests/shell/helpers/json-pretty.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/shell/helpers/json-pretty.sh b/tests/shell/helpers/json-pretty.sh
index 31739b02..e8679583 100755
--- a/tests/shell/helpers/json-pretty.sh
+++ b/tests/shell/helpers/json-pretty.sh
@@ -1,7 +1,7 @@
#!/bin/bash -e
exec_pretty() {
- # The output of this command must be stable (and `jq` and python
+ # The output of this command must be stable (and `jq` and python3
# fallback must generate the same output.
if command -v jq &>/dev/null ; then
@@ -9,7 +9,7 @@ exec_pretty() {
exec jq
fi
- # Fallback to python.
+ # Fallback to python3.
exec python3 -c '
import json
import sys