Skip to content

Commit

Permalink
Lint fixes.
Browse files Browse the repository at this point in the history
Signed-off-by: Eric Promislow <epromislow@suse.com>
  • Loading branch information
ericpromislow committed Jun 16, 2023
1 parent 6bd8028 commit 6226a3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bats/tests/helpers/vm.bash
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ EOF

wait_for_rdctl_background_process() {
case "${RDCTL_PROCESS_ID:-no}" in
0|no) ;;
[0-9][0-9]*) wait $RDCTL_PROCESS_ID || true ;;
0 | no) ;;
[0-9][0-9]*) wait "$RDCTL_PROCESS_ID" || true ;;
esac
}

Expand Down

0 comments on commit 6226a3a

Please sign in to comment.