From: Olivier Marin Date: Thu, 24 Jul 2008 12:44:40 +0000 (+0200) Subject: update test case to protect am --skip behaviour X-Git-Tag: v1.6.0-rc1~46 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9944d1a0e4ce741b07248b95fff2f506b5f1729c;p=git.git update test case to protect am --skip behaviour Signed-off-by: Olivier Marin Signed-off-by: Junio C Hamano --- diff --git a/t/t4151-am-abort.sh b/t/t4151-am-abort.sh index f45ab0a2e..7d86cdff6 100755 --- a/t/t4151-am-abort.sh +++ b/t/t4151-am-abort.sh @@ -17,6 +17,8 @@ test_expect_success setup ' for i in 2 3 4 5 6 do echo $i >>file-1 && + echo $i >otherfile-$i && + git add otherfile-$i && test_tick && git commit -a -m $i || break done &&