1
0
mirror of https://github.com/git/git.git synced 2024-10-04 00:33:11 +02:00

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 committed by Junio C Hamano
parent f830d45b9f
commit 059f13045a

@ -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' '