From: Felipe Contreras Date: Wed, 10 Apr 2013 06:57:51 +0000 (-0500) Subject: completion: trivial test improvement X-Git-Tag: v1.8.3-rc0~59^2~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cdbff7d6ad3c1c3e8c9dbd1cbd5c43fa240982be;p=git completion: trivial test improvement Instead of passing a dummy "", let's check if the last character is a space, and then move the _cword accordingly. Apparently we were passing "" all the way to compgen, which fortunately expanded it to nothing. Lets do the right thing though. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh index adc1372b3c..99d5c0142f 100755 --- a/t/t9902-completion.sh +++ b/t/t9902-completion.sh @@ -69,6 +69,7 @@ run_completion () local -a COMPREPLY _words local _cword _words=( $1 ) + test "${1: -1}" == ' ' && _words+=('') (( _cword = ${#_words[@]} - 1 )) __git_wrap__git_main && print_comp } @@ -148,7 +149,7 @@ test_expect_success '__gitcomp - suffix' ' ' test_expect_success 'basic' ' - run_completion "git \"\"" && + run_completion "git " && # built-in grep -q "^add \$" out && # script