X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft4113-apply-ending.sh;h=66fa51591eb7ee8f102fd86e30e54af2da3ea310;hb=7769a75e96f998b2f1ef51e8a2e88058f56fa519;hp=7fd0cf62ecd1bc0723f8ad7b619e8df4afcb0acc;hpb=f579d3c2b8f34844affbb355680adaa653606245;p=git.git diff --git a/t/t4113-apply-ending.sh b/t/t4113-apply-ending.sh index 7fd0cf62e..66fa51591 100755 --- a/t/t4113-apply-ending.sh +++ b/t/t4113-apply-ending.sh @@ -3,7 +3,7 @@ # Copyright (c) 2006 Catalin Marinas # -test_description='git-apply trying to add an ending line. +test_description='git apply trying to add an ending line. ' . ./test-lib.sh @@ -25,12 +25,12 @@ echo 'b' >>file echo 'c' >>file test_expect_success setup \ - 'git-update-index --add file' + 'git update-index --add file' # test -test_expect_failure 'apply at the end' \ - 'git-apply --index test-patch' +test_expect_success 'apply at the end' \ + 'test_must_fail git apply --index test-patch' cat >test-patch <<\EOF diff a/file b/file @@ -45,9 +45,9 @@ EOF echo >file 'a b c' -git-update-index file +git update-index file -test_expect_failure 'apply at the beginning' \ - 'git-apply --index test-patch' +test_expect_success 'apply at the beginning' \ + 'test_must_fail git apply --index test-patch' test_done