diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-05-29 20:54:44 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-05-30 09:46:20 +0200 |
commit | 730ab2cc23a8de4bd9c00e7a49e3864967cdb1fa (patch) | |
tree | ad29bc856f8a295a296fa82e40d527ae8aa03b00 /test | |
parent | TEST-58: add echo calls to print what is happening (diff) | |
download | systemd-730ab2cc23a8de4bd9c00e7a49e3864967cdb1fa.tar.xz systemd-730ab2cc23a8de4bd9c00e7a49e3864967cdb1fa.zip |
TEST-58: remove whitespace between redirection operator and its argument
Diffstat (limited to 'test')
-rwxr-xr-x | test/units/testsuite-58.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/units/testsuite-58.sh b/test/units/testsuite-58.sh index 06bceb5a86..37dfa9cefe 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" |