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:
authorEdward Thomson <ethomson@edwardthomson.com>2014-07-01 22:09:01 +0400
committerEdward Thomson <ethomson@edwardthomson.com>2014-07-01 22:40:16 +0400
commit0cee70ebb7297f155129e0d05f5a23be82231256 (patch)
tree6d98f55d737f4187e58f2a180ffb75f05b98bfba /tests/diff/iterator.c
parente1fc03c9baea9864dec90d0aef7aadcc2ff20576 (diff)
Introduce cl_assert_equal_oid
Diffstat (limited to 'tests/diff/iterator.c')
-rw-r--r--tests/diff/iterator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/diff/iterator.c b/tests/diff/iterator.c
index a2df1c7a7..26f670cfa 100644
--- a/tests/diff/iterator.c
+++ b/tests/diff/iterator.c
@@ -380,7 +380,7 @@ static void index_iterator_test(
if (expected_oids != NULL) {
git_oid oid;
cl_git_pass(git_oid_fromstr(&oid, expected_oids[count]));
- cl_assert_equal_i(git_oid_cmp(&oid, &entry->id), 0);
+ cl_assert_equal_oid(&oid, &entry->id);
}
count++;