Fix t4017-diff-retval for white-space from wc

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brian Gernhardt 2008-06-29 16:49:06 -04:00 коммит произвёл Junio C Hamano
Родитель 03e2b630f0
Коммит ab20fda992
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -123,7 +123,7 @@ test_expect_success 'check detects leftover conflict markers' '
git --no-pager diff --cached --check >test.out
test $? = 2
) &&
test "$(grep "conflict marker" test.out | wc -l)" = 3 &&
test 3 = $(grep "conflict marker" test.out | wc -l) &&
git reset --hard
'