Skip to content

Commit c995ef4

Browse files
drafnelgitster
authored andcommitted
t/t3905: add missing '&&' linkage
Signed-off-by: Brandon Casey <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d88acc9 commit c995ef4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

t/t3905-stash-include-untracked.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cat > expect <<EOF
2828
EOF
2929

3030
test_expect_success 'stash save --include-untracked cleaned the untracked files' '
31-
git status --porcelain >actual
31+
git status --porcelain >actual &&
3232
test_cmp expect actual
3333
'
3434

@@ -71,7 +71,7 @@ EOF
7171

7272
test_expect_success 'stash pop after save --include-untracked leaves files untracked again' '
7373
git stash pop &&
74-
git status --porcelain >actual
74+
git status --porcelain >actual &&
7575
test_cmp expect actual
7676
'
7777

@@ -136,7 +136,7 @@ test_expect_success 'stash save --include-untracked respects .gitignore' '
136136

137137
test_expect_success 'stash save -u can stash with only untracked files different' '
138138
echo 4 > file4 &&
139-
git stash -u
139+
git stash -u &&
140140
test "!" -f file4
141141
'
142142

0 commit comments

Comments
 (0)