On Thu, Apr 12, 2012 at 12:57 AM, Felipe Contreras
[off-list ref] wrote:
+test_expect_success 'double dash' '
+ cat >expected <<-\EOF &&
+ --paginate
+ --no-pager
+ --git-dir=
+ --bare
+ --version
+ --exec-path
+ --html-path
+ --work-tree=
+ --namespace=
+ --help
+ EOF
+ test_completion "git --"
There's a mistake here ^.
--- b/t/t9902-completion.sh
+++ a/t/t9902-completion.sh
@@ -96,7 +96,7 @@ test_expect_success 'double dash' '
--namespace=
--help Z
EOF
- test_completion "git --"
+ test_completion "git --" &&
sed -e "s/Z$//" >expected <<-\EOF &&
--quiet Z
--
Felipe Contreras