summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Chopin <simon.chopin@canonical.com>2021-10-25 18:02:30 +0200
committerSimon Chopin <simon.chopin@canonical.com>2021-10-26 09:12:02 +0200
commit90792e05b33a3f59efea8e6527520c004d1a2bf1 (patch)
treed570467d2e86c3695a5f123ed564deff27e5b06c
parentb333e7a6238726fe011a403875ceab76ebf6f01a (diff)
d/tests/python3: remove extraneous quotes (close #997855)
The quotes meant that the loop was always run on two elements: "python3.X python3.Y" and python3. This isn't problematic as long as there's only one version of Python3 in the archive, but Ubuntu has just uploaded 3.10 alongside 3.9.
-rwxr-xr-xdebian/tests/python32
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/tests/python3 b/debian/tests/python3
index 1be328c..3764892 100755
--- a/debian/tests/python3
+++ b/debian/tests/python3
@@ -5,7 +5,7 @@ cd "$AUTOPKGTEST_TMP"
failed=0
-for python in "$(py3versions -s)" python3; do
+for python in $(py3versions -s) python3; do
"$python" -m pytest test || failed=1
done