X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft4006-diff-mode.sh;h=ab5406dd9f241edee7a6067a1426f0a65076eb10;hb=d8b3a2bf189a9e7fea76454157b77fa71c9abc05;hp=e72c6fd1b4fa294e3e52fe55ab68c672bfc57e15;hpb=5bd74506cd30e897d1493639b7438c6cc80dea8e;p=git.git diff --git a/t/t4006-diff-mode.sh b/t/t4006-diff-mode.sh index e72c6fd1b..ab5406dd9 100755 --- a/t/t4006-diff-mode.sh +++ b/t/t4006-diff-mode.sh @@ -11,24 +11,24 @@ test_description='Test mode change diffs. test_expect_success \ 'setup' \ 'echo frotz >rezrov && - git-update-index --add rezrov && - tree=`git-write-tree` && + git update-index --add rezrov && + tree=`git write-tree` && echo $tree' if [ "$(git config --get core.filemode)" = false ] then say 'filemode disabled on the filesystem, using update-index --chmod=+x' test_expect_success \ - 'git-update-index --chmod=+x' \ - 'git-update-index rezrov && - git-update-index --chmod=+x rezrov && - git-diff-index $tree >current' + 'git update-index --chmod=+x' \ + 'git update-index rezrov && + git update-index --chmod=+x rezrov && + git diff-index $tree >current' else test_expect_success \ 'chmod' \ 'chmod +x rezrov && - git-update-index rezrov && - git-diff-index $tree >current' + git update-index rezrov && + git diff-index $tree >current' fi _x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' @@ -41,4 +41,3 @@ test_expect_success \ 'git diff expected check' test_done -