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:
authorRussell Belfer <rb@github.com>2013-09-04 22:42:48 +0400
committerRussell Belfer <rb@github.com>2013-09-05 03:23:00 +0400
commitcf94024c589591e9a5c46a71f8fdce9f8b467161 (patch)
treea6bc1252de6f876a3af068e60575d8f459f1838b /tests-clar/diff
parent61d57b7a21b2ac5ca7a763a1b768481926f56014 (diff)
Update clar
Diffstat (limited to 'tests-clar/diff')
-rw-r--r--tests-clar/diff/submodules.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests-clar/diff/submodules.c b/tests-clar/diff/submodules.c
index 94804db22..9dcf8194e 100644
--- a/tests-clar/diff/submodules.c
+++ b/tests-clar/diff/submodules.c
@@ -39,8 +39,9 @@ static void check_diff_patches_at_line(
cl_git_pass(git_diff_patch_to_str(&patch_text, patch));
- clar__assert_equal_s(expected[d], patch_text, file, line,
- "expected diff did not match actual diff", 1);
+ clar__assert_equal(
+ file, line, "expected diff did not match actual diff", 1,
+ "%s", expected[d], patch_text);
git__free(patch_text);
}