From: Eric Wong Date: Tue, 4 Jul 2006 08:04:24 +0000 (-0700) Subject: t8001-annotate: fix a bash-ism in this test X-Git-Tag: v1.4.2-rc1~91 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4d62eaabeb283d6dab56cfb2f2e54144b98afafd;p=git.git t8001-annotate: fix a bash-ism in this test Signed-off-by: Eric Wong Signed-off-by: Junio C Hamano --- diff --git a/t/t8001-annotate.sh b/t/t8001-annotate.sh index 70e2ad23a..3a6490e8f 100755 --- a/t/t8001-annotate.sh +++ b/t/t8001-annotate.sh @@ -8,8 +8,8 @@ PROG='git annotate' test_expect_success \ 'Annotating an old revision works' \ - '[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") == 2 ] && \ - [ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") == 2 ]' + '[ $(git annotate file master | awk "{print \$3}" | grep -c "^A$") -eq 2 ] && \ + [ $(git annotate file master | awk "{print \$3}" | grep -c "^B$") -eq 2 ]' test_done