summaryrefslogtreecommitdiff
path: root/tests/rebase/submodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rebase/submodule.c')
-rw-r--r--tests/rebase/submodule.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/rebase/submodule.c b/tests/rebase/submodule.c
index 7e27d7c9d..f71b94f7f 100644
--- a/tests/rebase/submodule.c
+++ b/tests/rebase/submodule.c
@@ -33,8 +33,9 @@ void test_rebase_submodule__initialize(void)
/* We have to commit the rewritten .gitmodules file */
cl_git_pass(git_repository_index(&index, repo));
cl_git_pass(git_index_add_bypath(index, ".gitmodules"));
- cl_git_pass(git_index_write_tree(&tree_oid, index));
+ cl_git_pass(git_index_write(index));
+ cl_git_pass(git_index_write_tree(&tree_oid, index));
cl_git_pass(git_tree_lookup(&tree, repo, &tree_oid));
cl_git_pass(git_repository_head(&master_ref, repo));