File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ cat > expect <<EOF
28
28
EOF
29
29
30
30
test_expect_success ' stash save --include-untracked cleaned the untracked files' '
31
- git status --porcelain >actual
31
+ git status --porcelain >actual &&
32
32
test_cmp expect actual
33
33
'
34
34
71
71
72
72
test_expect_success ' stash pop after save --include-untracked leaves files untracked again' '
73
73
git stash pop &&
74
- git status --porcelain >actual
74
+ git status --porcelain >actual &&
75
75
test_cmp expect actual
76
76
'
77
77
@@ -136,7 +136,7 @@ test_expect_success 'stash save --include-untracked respects .gitignore' '
136
136
137
137
test_expect_success ' stash save -u can stash with only untracked files different' '
138
138
echo 4 > file4 &&
139
- git stash -u
139
+ git stash -u &&
140
140
test "!" -f file4
141
141
'
142
142
You can’t perform that action at this time.
0 commit comments