The code style for tests is to have statements on their own line if possible. Move the `then` onto its own line so that it conforms with the test style. Signed-off-by: Denton Liu <liu.denton@xxxxxxxxx> --- t/lib-bash.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/lib-bash.sh b/t/lib-bash.sh index 2be955fafb..6a2c21cd24 100644 --- a/t/lib-bash.sh +++ b/t/lib-bash.sh @@ -2,7 +2,8 @@ # to run under Bash; primarily intended for tests of the completion # script. -if test -n "$BASH" && test -z "$POSIXLY_CORRECT"; then +if test -n "$BASH" && test -z "$POSIXLY_CORRECT" +then # we are in full-on bash mode true elif type bash >/dev/null 2>&1; then -- 2.24.0.399.gf8350c9437