Skip to content

Commit

Permalink
t/t3905: add missing '&&' linkage
Browse files Browse the repository at this point in the history
Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Brandon Casey authored and Junio C Hamano committed Aug 27, 2011
1 parent d88acc9 commit c995ef4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions t/t3905-stash-include-untracked.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
'

Expand Down Expand Up @@ -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
'

Expand Down Expand Up @@ -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
'

Expand Down

0 comments on commit c995ef4

Please sign in to comment.