Commit 0175971e91641cd07246f59003930d81019ce40b

Edward Thomson 2015-06-29T15:21:22

stash: const up conflict params

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/tests/stash/apply.c b/tests/stash/apply.c
index 1056ce7..f26b73b 100644
--- a/tests/stash/apply.c
+++ b/tests/stash/apply.c
@@ -96,7 +96,7 @@ void test_stash_apply__with_existing_file(void)
 
 void test_stash_apply__merges_new_file(void)
 {
-	git_index_entry *ancestor, *our, *their;
+	const git_index_entry *ancestor, *our, *their;
 
 	cl_git_mkfile("stash/where", "committed before stash\n");
 	cl_git_pass(git_index_add_bypath(repo_index, "where"));