From 8bca8b9e0379910686937380e5ac459c51a4864f Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Wed, 16 Sep 2015 14:40:44 -0400 Subject: [PATCH] apply: move patch data to patch_common.h --- tests/apply/fromdiff.c | 2 +- tests/apply/fromfile.c | 2 +- tests/{apply/apply_common.h => patch/patch_common.h} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename tests/{apply/apply_common.h => patch/patch_common.h} (100%) diff --git a/tests/apply/fromdiff.c b/tests/apply/fromdiff.c index ae37d0719..349773964 100644 --- a/tests/apply/fromdiff.c +++ b/tests/apply/fromdiff.c @@ -5,7 +5,7 @@ #include "repository.h" #include "buf_text.h" -#include "apply_common.h" +#include "../patch/patch_common.h" static git_repository *repo = NULL; static git_diff_options binary_opts = GIT_DIFF_OPTIONS_INIT; diff --git a/tests/apply/fromfile.c b/tests/apply/fromfile.c index 14b5e9a9e..acb635962 100644 --- a/tests/apply/fromfile.c +++ b/tests/apply/fromfile.c @@ -5,7 +5,7 @@ #include "repository.h" #include "buf_text.h" -#include "apply_common.h" +#include "../patch/patch_common.h" static git_repository *repo = NULL; diff --git a/tests/apply/apply_common.h b/tests/patch/patch_common.h similarity index 100% rename from tests/apply/apply_common.h rename to tests/patch/patch_common.h