summaryrefslogtreecommitdiff
path: root/tests/cherrypick
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2019-06-29 09:17:32 +0200
committerPatrick Steinhardt <ps@pks.im>2019-07-20 19:11:20 +0200
commite54343a4024e75dfaa940e652c2c9799d33634b2 (patch)
treeb483b313f4280db51a2a5aa29f53e6e9a2b2eb86 /tests/cherrypick
parent1f44079cae42864cb51d98ca57f5d1f4d8296693 (diff)
downloadlibgit2-e54343a4024e75dfaa940e652c2c9799d33634b2.tar.gz
fileops: rename to "futils.h" to match function signatures
Our file utils functions all have a "futils" prefix, e.g. `git_futils_touch`. One would thus naturally guess that their definitions and implementation would live in files "futils.h" and "futils.c", respectively, but in fact they live in "fileops.h". Rename the files to match expectations.
Diffstat (limited to 'tests/cherrypick')
-rw-r--r--tests/cherrypick/bare.c2
-rw-r--r--tests/cherrypick/workdir.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/cherrypick/bare.c b/tests/cherrypick/bare.c
index 135336507..50e8d8600 100644
--- a/tests/cherrypick/bare.c
+++ b/tests/cherrypick/bare.c
@@ -2,7 +2,7 @@
#include "clar_libgit2.h"
#include "buffer.h"
-#include "fileops.h"
+#include "futils.h"
#include "git2/cherrypick.h"
#include "../merge/merge_helpers.h"
diff --git a/tests/cherrypick/workdir.c b/tests/cherrypick/workdir.c
index 8f6644996..10e8c2d8b 100644
--- a/tests/cherrypick/workdir.c
+++ b/tests/cherrypick/workdir.c
@@ -2,7 +2,7 @@
#include "clar_libgit2.h"
#include "buffer.h"
-#include "fileops.h"
+#include "futils.h"
#include "git2/cherrypick.h"
#include "../merge/merge_helpers.h"