File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -270,22 +270,22 @@ test_expect_success '--merge is ok with added/deleted merge' '
270
270
git reset --hard third &&
271
271
rm -f file2 &&
272
272
test_must_fail git merge branch3 &&
273
- ! test -f file2 &&
274
- test -f file3 &&
273
+ test_path_is_missing file2 &&
274
+ test_path_is_file file3 &&
275
275
git diff --exit-code file3 &&
276
276
git diff --exit-code branch3 file3 &&
277
277
git reset --merge HEAD &&
278
- ! test -f file3 &&
279
- ! test -f file2 &&
278
+ test_path_is_missing file3 &&
279
+ test_path_is_missing file2 &&
280
280
git diff --exit-code --cached
281
281
'
282
282
283
283
test_expect_success ' --keep fails with added/deleted merge' '
284
284
git reset --hard third &&
285
285
rm -f file2 &&
286
286
test_must_fail git merge branch3 &&
287
- ! test -f file2 &&
288
- test -f file3 &&
287
+ test_path_is_missing file2 &&
288
+ test_path_is_file file3 &&
289
289
git diff --exit-code file3 &&
290
290
git diff --exit-code branch3 file3 &&
291
291
test_must_fail git reset --keep HEAD 2>err.log &&
You can’t perform that action at this time.
0 commit comments