summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/json_echo/run-test.py2
-rwxr-xr-xtests/py/nft-test.py2
-rwxr-xr-xtests/shell/helpers/json-pretty.sh4
3 files changed, 4 insertions, 4 deletions
diff --git a/tests/json_echo/run-test.py b/tests/json_echo/run-test.py
index 7d0eca0a..ed8360bc 100755
--- a/tests/json_echo/run-test.py
+++ b/tests/json_echo/run-test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python
+#!/usr/bin/python3
from __future__ import print_function
import sys
diff --git a/tests/py/nft-test.py b/tests/py/nft-test.py
index ff2412ac..53fd3f7a 100755
--- a/tests/py/nft-test.py
+++ b/tests/py/nft-test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
#
# (C) 2014 by Ana Rey Botello <anarey@gmail.com>
#
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