Skip to content
Snippets Groups Projects
Verified Commit f1e689b5 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

Fix broken tests image tagging

It seems like there was some upgrade of a golang interpretation of the
format argument. This patch solves the mismatch.
parent 86f5bf1d
No related branches found
No related tags found
No related merge requests found
Pipeline #4935 passed
...@@ -14,8 +14,8 @@ TEST_VERIFY_OUTPUT="$(mktemp)" ...@@ -14,8 +14,8 @@ TEST_VERIFY_OUTPUT="$(mktemp)"
"$BASEDIR"/../bin/tagging.sh -l mytest-latest:test registry.example.com/latest-test 1.2.3 "$BASEDIR"/../bin/tagging.sh -l mytest-latest:test registry.example.com/latest-test 1.2.3
podman images --format "table {{.Repository}}:{{.Tag}}" registry.example.com/latest-test | grep registry.example.com/latest-test > "$TEST_OUTPUT" 2>&1 podman images --format "{{.Repository}}:{{.Tag}}" registry.example.com/latest-test | grep registry.example.com/latest-test > "$TEST_OUTPUT" 2>&1
podman images --format "table {{.Repository}}:{{.Tag}}" registry.example.com/latest-test | grep registry.example.com/latest-test podman images --format "{{.Repository}}:{{.Tag}}" registry.example.com/latest-test | grep registry.example.com/latest-test
cat >"$TEST_VERIFY_OUTPUT" <<EOF cat >"$TEST_VERIFY_OUTPUT" <<EOF
registry.example.com/latest-test:1 registry.example.com/latest-test:1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment