about summary refs log tree commit diff
path: root/third_party/git/t/t3504-cherry-pick-rerere.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/t/t3504-cherry-pick-rerere.sh')
-rwxr-xr-xthird_party/git/t/t3504-cherry-pick-rerere.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/third_party/git/t/t3504-cherry-pick-rerere.sh b/third_party/git/t/t3504-cherry-pick-rerere.sh
index 80a0d08706..a267b2d144 100755
--- a/third_party/git/t/t3504-cherry-pick-rerere.sh
+++ b/third_party/git/t/t3504-cherry-pick-rerere.sh
@@ -94,10 +94,8 @@ test_expect_success 'cherry-pick --rerere-autoupdate more than once' '
 
 test_expect_success 'cherry-pick conflict without rerere' '
 	test_config rerere.enabled false &&
-	test_must_fail git cherry-pick foo-master &&
-	grep ===== foo &&
-	grep foo-dev foo &&
-	grep foo-master foo
+	test_must_fail git cherry-pick master &&
+	test_must_fail test_cmp expect foo
 '
 
 test_done