From: Brandon Casey Date: Sat, 27 Aug 2011 00:59:26 +0000 (-0500) Subject: t/t3905: add missing '&&' linkage X-Git-Tag: v1.7.8-rc0~144^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c995ef49e2a3076236d8fc710cc2015f5ff201c5;p=git.git t/t3905: add missing '&&' linkage Signed-off-by: Brandon Casey Signed-off-by: Junio C Hamano --- diff --git a/t/t3905-stash-include-untracked.sh b/t/t3905-stash-include-untracked.sh index adc25245b..ca1a46cb1 100755 --- a/t/t3905-stash-include-untracked.sh +++ b/t/t3905-stash-include-untracked.sh @@ -28,7 +28,7 @@ cat > expect <actual + git status --porcelain >actual && test_cmp expect actual ' @@ -71,7 +71,7 @@ EOF test_expect_success 'stash pop after save --include-untracked leaves files untracked again' ' git stash pop && - git status --porcelain >actual + git status --porcelain >actual && test_cmp expect actual ' @@ -136,7 +136,7 @@ test_expect_success 'stash save --include-untracked respects .gitignore' ' test_expect_success 'stash save -u can stash with only untracked files different' ' echo 4 > file4 && - git stash -u + git stash -u && test "!" -f file4 '