From 730ab2cc23a8de4bd9c00e7a49e3864967cdb1fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 29 May 2023 20:54:44 +0200 Subject: [PATCH] TEST-58: remove whitespace between redirection operator and its argument --- test/units/testsuite-58.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/units/testsuite-58.sh b/test/units/testsuite-58.sh index 06bceb5a867..37dfa9cefe5 100755 --- a/test/units/testsuite-58.sh +++ b/test/units/testsuite-58.sh @@ -838,9 +838,9 @@ EOF --certificate="$defs/verity.crt" \ "$imgs/verity") - drh=$(jq -r ".[] | select(.type == \"root-${architecture}\") | .roothash" <<< "$output") - hrh=$(jq -r ".[] | select(.type == \"root-${architecture}-verity\") | .roothash" <<< "$output") - srh=$(jq -r ".[] | select(.type == \"root-${architecture}-verity-sig\") | .roothash" <<< "$output") + drh=$(jq -r ".[] | select(.type == \"root-${architecture}\") | .roothash" <<<"$output") + hrh=$(jq -r ".[] | select(.type == \"root-${architecture}-verity\") | .roothash" <<<"$output") + srh=$(jq -r ".[] | select(.type == \"root-${architecture}-verity-sig\") | .roothash" <<<"$output") assert_eq "$drh" "$hrh" assert_eq "$hrh" "$srh"