diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-09-16 09:55:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-16 09:55:56 +0200 |
commit | ccee741973a182f65af4e58302c9a76107974f0a (patch) | |
tree | df1c78b6ad1f044b394862629c08c7a207d67a09 /test/compose | |
parent | 0e3a0ec7d485a81b7ca38997e93bea69ad95d79a (diff) | |
parent | cfbc4aaeb50b5fb12ec9363328bb08fc459a1067 (diff) | |
download | podman-ccee741973a182f65af4e58302c9a76107974f0a.tar.gz podman-ccee741973a182f65af4e58302c9a76107974f0a.tar.bz2 podman-ccee741973a182f65af4e58302c9a76107974f0a.zip |
Merge pull request #15829 from edsantiago/shlint
Cleanup: fix problems reported by shell lint
Diffstat (limited to 'test/compose')
-rwxr-xr-x | test/compose/test-compose | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/compose/test-compose b/test/compose/test-compose index 99d063c25..fe2da9532 100755 --- a/test/compose/test-compose +++ b/test/compose/test-compose @@ -64,7 +64,7 @@ function is() { local expect=$2 local testname=$3 - if [[ $actual = $expect ]]; then + if [[ "$actual" = "$expect" ]]; then # On success, include expected value; this helps readers understand _show_ok 1 "$testname=$expect" return @@ -303,12 +303,12 @@ n_tests=0 # We aren't really TAP 13; this helps logformatter recognize our output as BATS echo "TAP version 13" -for t in ${tests_to_run[@]}; do +for t in "${tests_to_run[@]}"; do testdir="$(dirname $t)" testname="$(basename $testdir)" if [ -e $test_dir/SKIP ]; then - local reason="$(<$test_dir/SKIP)" + reason="$(<$test_dir/SKIP)" if [ -n "$reason" ]; then reason=" - $reason" fi |