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:
authorScott J. Goldman <scottjg@github.com>2013-01-23 04:01:03 +0400
committerScott J. Goldman <scottjg@github.com>2013-01-23 04:01:03 +0400
commit5c7b77c4f8707571530fc2b2c3b7154965a27344 (patch)
treebfe1a354fe68f297c509b5d89630985062f1f98e /tests-clar/object
parentcb35094be3c1dbe369454118e801e703d70c4a33 (diff)
Seperate out a new test that verifies packed-refs with no trailing newline
as per @vmg's request
Diffstat (limited to 'tests-clar/object')
-rw-r--r--tests-clar/object/tag/read.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests-clar/object/tag/read.c b/tests-clar/object/tag/read.c
index 6dab2a9a9..16e3e63a2 100644
--- a/tests-clar/object/tag/read.c
+++ b/tests-clar/object/tag/read.c
@@ -62,7 +62,6 @@ void test_object_tag_read__parse_without_tagger(void)
git_tag *bad_tag;
git_commit *commit;
git_oid id, id_commit;
- git_strarray ref_list;
// TODO: This is a little messy
cl_git_pass(git_repository_open(&bad_tag_repo, cl_fixture("bad_tag.git")));
@@ -82,9 +81,7 @@ void test_object_tag_read__parse_without_tagger(void)
cl_assert(git_oid_cmp(&id_commit, git_commit_id(commit)) == 0);
- cl_git_pass(git_reference_list(&ref_list, bad_tag_repo, GIT_REF_LISTALL));
- git_strarray_free(&ref_list);
git_tag_free(bad_tag);
git_commit_free(commit);
git_repository_free(bad_tag_repo);