Commit 53cb87575dc2982d23038e87e87824f8b20fe4be

Vicent Martí 2013-04-17T15:27:53

Merge pull request #1478 from ethomson/win32_typechange_test use a longer string for dummy data in test to avoid conflicting w/ index

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests-clar/checkout/typechange.c b/tests-clar/checkout/typechange.c
index b92cc23..6cf99ac 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)