summaryrefslogtreecommitdiff
path: root/t/t3905-stash-include-untracked.sh
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2011-08-27 00:59:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-08-27 18:12:15 (GMT)
commitc995ef49e2a3076236d8fc710cc2015f5ff201c5 (patch)
tree2216fce956c3a000dc0795401dcbab90bea07762 /t/t3905-stash-include-untracked.sh
parentd88acc91785661ef261ed816c13b70068400d194 (diff)
downloadgit-c995ef49e2a3076236d8fc710cc2015f5ff201c5.zip
git-c995ef49e2a3076236d8fc710cc2015f5ff201c5.tar.gz
git-c995ef49e2a3076236d8fc710cc2015f5ff201c5.tar.bz2
t/t3905: add missing '&&' linkage
Signed-off-by: Brandon Casey <drafnel@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t3905-stash-include-untracked.sh')
-rwxr-xr-xt/t3905-stash-include-untracked.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t3905-stash-include-untracked.sh b/t/t3905-stash-include-untracked.sh
index adc2524..ca1a46c 100755
--- a/t/t3905-stash-include-untracked.sh
+++ b/t/t3905-stash-include-untracked.sh
@@ -28,7 +28,7 @@ cat > expect <<EOF
EOF
test_expect_success 'stash save --include-untracked cleaned the untracked files' '
- git status --porcelain >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
'