diff options
author | Ben Straub <bs@github.com> | 2012-10-19 19:37:47 -0700 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-10-19 19:37:47 -0700 |
commit | cd001bbbfe75a366d9658849cf6c5931440c0c01 (patch) | |
tree | ea23f711cca6774370a33a69b6d80ee48bfcb4ec | |
parent | 63afb005e86d49e0f84d135d3d8dddae085a003f (diff) | |
download | libgit2-cd001bbbfe75a366d9658849cf6c5931440c0c01.tar.gz |
Fix from rebase
-rw-r--r-- | tests-clar/checkout/head.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/checkout/head.c b/tests-clar/checkout/head.c index f2f81e5e2..129f24974 100644 --- a/tests-clar/checkout/head.c +++ b/tests-clar/checkout/head.c @@ -20,5 +20,5 @@ void test_checkout_head__checking_out_an_orphaned_head_returns_GIT_EORPHANEDHEAD cl_git_pass(git_reference_create_symbolic(&head, g_repo, GIT_HEAD_FILE, "refs/heads/hide/and/seek", 1)); git_reference_free(head); - cl_assert_equal_i(GIT_EORPHANEDHEAD, git_checkout_head(g_repo, NULL, NULL)); + cl_assert_equal_i(GIT_EORPHANEDHEAD, git_checkout_head(g_repo, NULL)); } |