summaryrefslogtreecommitdiff
path: root/tests/t03-objwrite.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t03-objwrite.c')
-rw-r--r--tests/t03-objwrite.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/t03-objwrite.c b/tests/t03-objwrite.c
index 1fc0cac5e..1650b8060 100644
--- a/tests/t03-objwrite.c
+++ b/tests/t03-objwrite.c
@@ -44,9 +44,9 @@ static int make_odb_dir(void)
static int check_object_files(object_data *d)
{
- if (git_futils_exists(d->dir) < 0)
+ if (git_path_exists(d->dir) < 0)
return -1;
- if (git_futils_exists(d->file) < 0)
+ if (git_path_exists(d->file) < 0)
return -1;
return 0;
}