Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-07-04 12:04:24 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-04 13:55:52 +0400
commit4d62eaabeb283d6dab56cfb2f2e54144b98afafd (patch)
treec4e623fb8fc2c010c63f9250c56d0800e238ddd8 /t/t8001-annotate.sh
parent280242d1cc1fe2847f649d2f16b273e168fcbc48 (diff)
t8001-annotate: fix a bash-ism in this test
Signed-off-by: Eric Wong <normalperson@yhbt.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t8001-annotate.sh')
-rwxr-xr-xt/t8001-annotate.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t8001-annotate.sh b/t/t8001-annotate.sh
index 70e2ad23ae..3a6490e8f8 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