From 8023b83a945eaf3be7baad4fa74d93f4a079be0f Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 17 Apr 2013 17:21:17 -0500 Subject: [PATCH] use a longer string for dummy data in test to avoid conflicting w/ index --- tests-clar/checkout/typechange.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests-clar/checkout/typechange.c b/tests-clar/checkout/typechange.c index b92cc23fa..6cf99ac15 100644 --- a/tests-clar/checkout/typechange.c +++ b/tests-clar/checkout/typechange.c @@ -187,7 +187,7 @@ static void force_create_file(const char *file) GIT_RMDIR_REMOVE_FILES | GIT_RMDIR_REMOVE_BLOCKERS); cl_assert(!error || error == GIT_ENOTFOUND); cl_git_pass(git_futils_mkpath2file(file, 0777)); - cl_git_rewritefile(file, "yowza!"); + cl_git_rewritefile(file, "yowza!!"); } void test_checkout_typechange__checkout_with_conflicts(void)