Code

Merge branch 'np/maint-no-ofs-delta' into maint
[git.git] / t / t4113-apply-ending.sh
index 1c6bec044a00faf24e275280e0b9fa667356f2b3..66fa51591eb7ee8f102fd86e30e54af2da3ea310 100755 (executable)
@@ -29,8 +29,8 @@ test_expect_success setup \
 
 # 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
@@ -47,7 +47,7 @@ b
 c'
 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