File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ testrebase () {
202
202
echo dirty >>file3 &&
203
203
test_must_fail git rebase$type related-onto-branch &&
204
204
test_path_is_file $dotest/autostash &&
205
- ! grep dirty file3 &&
205
+ test_path_is_missing file3 &&
206
206
rm -rf $dotest &&
207
207
git reset --hard &&
208
208
git checkout feature-branch
@@ -216,7 +216,7 @@ testrebase () {
216
216
echo dirty >>file3 &&
217
217
test_must_fail git rebase$type related-onto-branch &&
218
218
test_path_is_file $dotest/autostash &&
219
- ! grep dirty file3 &&
219
+ test_path_is_missing file3 &&
220
220
echo "conflicting-plus-goodbye" >file2 &&
221
221
git add file2 &&
222
222
git rebase --continue &&
@@ -233,7 +233,7 @@ testrebase () {
233
233
echo dirty >>file3 &&
234
234
test_must_fail git rebase$type related-onto-branch &&
235
235
test_path_is_file $dotest/autostash &&
236
- ! grep dirty file3 &&
236
+ test_path_is_missing file3 &&
237
237
git rebase --skip &&
238
238
test_path_is_missing $dotest/autostash &&
239
239
grep dirty file3 &&
@@ -248,7 +248,7 @@ testrebase () {
248
248
echo dirty >>file3 &&
249
249
test_must_fail git rebase$type related-onto-branch &&
250
250
test_path_is_file $dotest/autostash &&
251
- ! grep dirty file3 &&
251
+ test_path_is_missing file3 &&
252
252
git rebase --abort &&
253
253
test_path_is_missing $dotest/autostash &&
254
254
grep dirty file3 &&
You can’t perform that action at this time.
0 commit comments