t3903-stash.sh: Add missing '&&' to body of testcase

Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Casey 2008-03-02 14:58:48 -06:00 коммит произвёл Junio C Hamano
Родитель f830d45b9f
Коммит 059f13045a
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -40,8 +40,8 @@ test_expect_success 'parents of stash' '
test_expect_success 'apply needs clean working directory' '
echo 4 > other-file &&
git add other-file &&
echo 5 > other-file
! git stash apply
echo 5 > other-file &&
test_must_fail git stash apply
'
test_expect_success 'apply stashed changes' '