@@ -176,7 +176,7 @@ git rev-parse refs/notes/z > pre_merge_z
176
176
test_expect_success ' merge z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
177
177
git update-ref refs/notes/m refs/notes/y &&
178
178
git config core.notesRef refs/notes/m &&
179
- test_must_fail git notes merge z >output &&
179
+ test_must_fail git notes merge z >output 2>&1 &&
180
180
# Output should point to where to resolve conflicts
181
181
test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&
182
182
# Inspect merge conflicts
@@ -379,7 +379,7 @@ git rev-parse refs/notes/z > pre_merge_z
379
379
test_expect_success ' redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
380
380
git update-ref refs/notes/m refs/notes/y &&
381
381
git config core.notesRef refs/notes/m &&
382
- test_must_fail git notes merge z >output &&
382
+ test_must_fail git notes merge z >output 2>&1 &&
383
383
# Output should point to where to resolve conflicts
384
384
test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&
385
385
# Inspect merge conflicts
@@ -413,7 +413,7 @@ git rev-parse refs/notes/y > pre_merge_y
413
413
git rev-parse refs/notes/z > pre_merge_z
414
414
415
415
test_expect_success ' redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
416
- test_must_fail git notes merge z >output &&
416
+ test_must_fail git notes merge z >output 2>&1 &&
417
417
# Output should point to where to resolve conflicts
418
418
test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&
419
419
# Inspect merge conflicts
@@ -494,7 +494,7 @@ cp expect_log_y expect_log_m
494
494
495
495
test_expect_success ' redo merge of z into m (== y) with default ("manual") resolver => Conflicting 3-way merge' '
496
496
git update-ref refs/notes/m refs/notes/y &&
497
- test_must_fail git notes merge z >output &&
497
+ test_must_fail git notes merge z >output 2>&1 &&
498
498
# Output should point to where to resolve conflicts
499
499
test_i18ngrep "\\.git/NOTES_MERGE_WORKTREE" output &&
500
500
# Inspect merge conflicts
0 commit comments