e31582
diff --git a/systemtest/010-inspect.bats b/systemtest/010-inspect.bats
e31582
index 26d8364..dea2c7d 100644
e31582
--- a/systemtest/010-inspect.bats
e31582
+++ b/systemtest/010-inspect.bats
e31582
@@ -107,7 +107,7 @@ END_EXPECT
e31582
         remote_image=docker://docker.io/$arch/golang
e31582
         run_skopeo inspect --tls-verify=false --raw $remote_image
e31582
         remote=$(echo "$output" | jq -r '.manifests[0]["platform"]')
e31582
-        expect=$(echo "{\"architecture\":\"$arch\",\"os\":\"linux\"}" | jq)
e31582
+        expect=$(echo "{\"architecture\":\"$arch\",\"os\":\"linux\"}" | jq .)
e31582
         expect_output --from="$remote" --substring "$expect" \
e31582
                   "platform arch is not expected"
e31582
     done
e31582
diff --git a/systemtest/helpers.bash b/systemtest/helpers.bash
e31582
index 5e69d0d..765286a 100644
e31582
--- a/systemtest/helpers.bash
e31582
+++ b/systemtest/helpers.bash
e31582
@@ -299,7 +299,7 @@ start_registry() {
e31582
         fi
e31582
 
e31582
         if ! egrep -q "^$testuser:" $AUTHDIR/htpasswd; then
e31582
-            log_and_run $PODMAN run --rm --entrypoint htpasswd registry:2 \
e31582
+            log_and_run $PODMAN run --rm --entrypoint htpasswd registry:2.6 \
e31582
                    -Bbn $testuser $testpassword >> $AUTHDIR/htpasswd
e31582
         fi
e31582
 
e31582
@@ -332,7 +332,7 @@ start_registry() {
e31582
         log_and_run cp $CERT $TESTDIR/client-auth/
e31582
     fi
e31582
 
e31582
-    log_and_run $PODMAN run -d --name $name "${reg_args[@]}" registry:2
e31582
+    log_and_run $PODMAN run -d --name $name "${reg_args[@]}" registry:2.6
e31582
 
e31582
     # Wait for registry to actually come up
e31582
     timeout=10