wildmatch test: use more standard shell style

Change the wildmatch test to use more standard shell style, usually we
use "if test" not "if [".

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Ævar Arnfjörð Bjarmason 2018-01-30 21:21:16 +00:00 committed by Junio C Hamano
parent a4a136f56e
commit 5008ba8c5e

View File

@ -5,7 +5,8 @@ test_description='wildmatch tests'
. ./test-lib.sh . ./test-lib.sh
match() { match() {
if [ $1 = 1 ]; then if test "$1" = 1
then
test_expect_success "wildmatch: match '$3' '$4'" " test_expect_success "wildmatch: match '$3' '$4'" "
test-wildmatch wildmatch '$3' '$4' test-wildmatch wildmatch '$3' '$4'
" "
@ -17,7 +18,8 @@ match() {
} }
imatch() { imatch() {
if [ $1 = 1 ]; then if test "$1" = 1
then
test_expect_success "iwildmatch: match '$2' '$3'" " test_expect_success "iwildmatch: match '$2' '$3'" "
test-wildmatch iwildmatch '$2' '$3' test-wildmatch iwildmatch '$2' '$3'
" "
@ -29,7 +31,8 @@ imatch() {
} }
pathmatch() { pathmatch() {
if [ $1 = 1 ]; then if test "$1" = 1
then
test_expect_success "pathmatch: match '$2' '$3'" " test_expect_success "pathmatch: match '$2' '$3'" "
test-wildmatch pathmatch '$2' '$3' test-wildmatch pathmatch '$2' '$3'
" "