Commit c7974b49 by Justin Spahr-Summers

Fail on unmodified deltas when they're unexpected

parent b0401c68
......@@ -47,7 +47,7 @@ static void check_diff_patches(git_diff_list *diff, const char **expected)
for (d = 0; d < num_d; ++d, git_diff_patch_free(patch)) {
cl_git_pass(git_diff_get_patch(&patch, &delta, diff, d));
if (delta->status == GIT_DELTA_UNMODIFIED)
if (delta->status == GIT_DELTA_UNMODIFIED && expected[d] == NULL)
continue;
if (expected[d] && !strcmp(expected[d], "<SKIP>"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment