t/t3905: add missing '&&' linkage

Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Brandon Casey 2011-08-26 19:59:26 -05:00 коммит произвёл Junio C Hamano
Родитель d88acc9178
Коммит c995ef49e2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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
'