From: Thomas Rast Date: Mon, 8 Jul 2013 15:20:31 +0000 (+0200) Subject: t9902: fix 'test A == B' to use = operator X-Git-Tag: v1.8.3.4~17^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38678a15a2bf65580573a46e967c1d8d269965ae;p=thirdparty%2Fgit.git t9902: fix 'test A == B' to use = operator The == operator as an alias to = is not POSIX. This doesn't actually matter for the execution of the script, because it only runs when the shell is bash. However, it trips up test-lint, so it's nicer to use the standard form. Signed-off-by: Thomas Rast Signed-off-by: Junio C Hamano --- diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh index 6d9d1418a0..a71d8b41e3 100755 --- a/t/t9902-completion.sh +++ b/t/t9902-completion.sh @@ -69,7 +69,7 @@ run_completion () local -a COMPREPLY _words local _cword _words=( $1 ) - test "${1: -1}" == ' ' && _words+=('') + test "${1: -1}" = ' ' && _words+=('') (( _cword = ${#_words[@]} - 1 )) __git_wrap__git_main && print_comp }