Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/describe/describe.c')
-rw-r--r--tests/describe/describe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/describe/describe.c b/tests/describe/describe.c
index d2df36c91..9a523a169 100644
--- a/tests/describe/describe.c
+++ b/tests/describe/describe.c
@@ -4,7 +4,7 @@
void test_describe_describe__can_describe_against_a_bare_repo(void)
{
git_repository *repo;
- git_describe_opts opts = GIT_DESCRIBE_OPTIONS_INIT;
+ git_describe_options opts = GIT_DESCRIBE_OPTIONS_INIT;
git_describe_format_options fmt_opts = GIT_DESCRIBE_FORMAT_OPTIONS_INIT;
cl_git_pass(git_repository_open(&repo, cl_fixture("testrepo.git")));
@@ -31,7 +31,7 @@ static int delete_cb(git_reference *ref, void *payload)
void test_describe_describe__cannot_describe_against_a_repo_with_no_ref(void)
{
git_repository *repo;
- git_describe_opts opts = GIT_DESCRIBE_OPTIONS_INIT;
+ git_describe_options opts = GIT_DESCRIBE_OPTIONS_INIT;
git_buf buf = GIT_BUF_INIT;
git_object *object;
git_describe_result *result = NULL;