use a longer string for dummy data in test to avoid conflicting w/ index

This commit is contained in:
Edward Thomson 2013-04-17 17:21:17 -05:00
parent 526882a30a
commit 8023b83a94

View File

@ -187,7 +187,7 @@ static void force_create_file(const char *file)
GIT_RMDIR_REMOVE_FILES | GIT_RMDIR_REMOVE_BLOCKERS); GIT_RMDIR_REMOVE_FILES | GIT_RMDIR_REMOVE_BLOCKERS);
cl_assert(!error || error == GIT_ENOTFOUND); cl_assert(!error || error == GIT_ENOTFOUND);
cl_git_pass(git_futils_mkpath2file(file, 0777)); 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) void test_checkout_typechange__checkout_with_conflicts(void)