t9902: fix 'test A == B' to use = operator
commit38678a15a2bf65580573a46e967c1d8d269965ae
authorThomas Rast <trast@inf.ethz.ch>
Mon, 8 Jul 2013 15:20:31 +0000 (8 17:20 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 8 Jul 2013 17:20:59 +0000 (8 10:20 -0700)
treed368f364dfa4c9cc4bb63e4284be5a0123762382
parent531c8dd4fb18e653d6170d367e4b23c3164d5ce0
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 <trast@inf.ethz.ch>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t9902-completion.sh