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 @@ -647,21 +647,21 @@ test_expect_success SYMLINKS 'difftool --dir-diff --symlinks without unstaged ch
647647'
648648
649649write_script modify-right-file << \EOF
650- echo "new content" >"$2 /file"
650+ echo "modified content" >"$2 /file"
651651EOF
652652
653653run_dir_diff_test ' difftool --dir-diff syncs worktree with unstaged change' '
654654 test_when_finished git reset --hard &&
655655 echo "orig content" >file &&
656656 git difftool -d $symlinks --extcmd "$PWD/modify-right-file" branch &&
657- echo "new content" >expect &&
657+ echo "modified content" >expect &&
658658 test_cmp expect file
659659'
660660
661661run_dir_diff_test ' difftool --dir-diff syncs worktree without unstaged change' '
662662 test_when_finished git reset --hard &&
663663 git difftool -d $symlinks --extcmd "$PWD/modify-right-file" branch &&
664- echo "new content" >expect &&
664+ echo "modified content" >expect &&
665665 test_cmp expect file
666666'
667667
You can’t perform that action at this time.
0 commit comments