diff options
author | Brandon Casey <drafnel@gmail.com> | 2011-08-26 19:59:26 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-08-27 11:12:15 -0700 |
commit | c995ef49e2a3076236d8fc710cc2015f5ff201c5 (patch) | |
tree | 2216fce956c3a000dc0795401dcbab90bea07762 | |
parent | git-stash.sh: fix typo in error message (diff) | |
download | tgif-c995ef49e2a3076236d8fc710cc2015f5ff201c5.tar.xz |
t/t3905: add missing '&&' linkage
Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3905-stash-include-untracked.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t3905-stash-include-untracked.sh b/t/t3905-stash-include-untracked.sh index adc25245b9..ca1a46cb11 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 ' |