summaryrefslogtreecommitdiff
path: root/tests/rebase/iterator.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2015-03-17 11:47:16 -0400
committerEdward Thomson <ethomson@microsoft.com>2015-04-20 16:22:49 -0400
commit5ae38538c6dd88cca058fac1b84e29df4fed60e4 (patch)
tree2d8290d9185618af3c16791278ed6d029bf31cad /tests/rebase/iterator.c
parent649834fd6edd5ee2f7cb3e791081b2d57a4d7c41 (diff)
downloadlibgit2-5ae38538c6dd88cca058fac1b84e29df4fed60e4.tar.gz
rebase: take `checkout_options` where appropriate
Diffstat (limited to 'tests/rebase/iterator.c')
-rw-r--r--tests/rebase/iterator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rebase/iterator.c b/tests/rebase/iterator.c
index 23272d51c..d2f4278cc 100644
--- a/tests/rebase/iterator.c
+++ b/tests/rebase/iterator.c
@@ -64,7 +64,7 @@ void test_rebase_iterator__iterates(void)
cl_git_pass(git_annotated_commit_from_ref(&branch_head, repo, branch_ref));
cl_git_pass(git_annotated_commit_from_ref(&upstream_head, repo, upstream_ref));
- cl_git_pass(git_rebase_init(&rebase, repo, branch_head, upstream_head, NULL, NULL));
+ cl_git_pass(git_rebase_init(&rebase, repo, branch_head, upstream_head, NULL, NULL, NULL));
test_operations(rebase, GIT_REBASE_NO_OPERATION);
git_rebase_free(rebase);