From f1e689b5f04070baf3fe81e6f4cca658b290ba4c Mon Sep 17 00:00:00 2001
From: Sheogorath <sheogorath@shivering-isles.com>
Date: Tue, 14 Jul 2020 12:55:37 +0200
Subject: [PATCH] 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.
---
 test/latest.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/latest.sh b/test/latest.sh
index 6a8e710..79e93d8 100755
--- a/test/latest.sh
+++ b/test/latest.sh
@@ -14,8 +14,8 @@ TEST_VERIFY_OUTPUT="$(mktemp)"
 
 "$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 "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 > "$TEST_OUTPUT" 2>&1
+podman images --format "{{.Repository}}:{{.Tag}}"  registry.example.com/latest-test | grep registry.example.com/latest-test
 
 cat >"$TEST_VERIFY_OUTPUT" <<EOF
 registry.example.com/latest-test:1
-- 
GitLab