summaryrefslogtreecommitdiff
path: root/tests/index/nsec.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/index/nsec.c')
-rw-r--r--tests/index/nsec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/index/nsec.c b/tests/index/nsec.c
index 6edcf030a..3efd855a7 100644
--- a/tests/index/nsec.c
+++ b/tests/index/nsec.c
@@ -47,16 +47,16 @@ static bool try_create_file_with_nsec_timestamp(const char *path)
*/
static bool should_expect_nsecs(void)
{
- git_buf nsec_path = GIT_BUF_INIT;
+ git_str nsec_path = GIT_STR_INIT;
bool expect;
- git_buf_joinpath(&nsec_path, clar_sandbox_path(), "nsec_test");
+ git_str_joinpath(&nsec_path, clar_sandbox_path(), "nsec_test");
expect = try_create_file_with_nsec_timestamp(nsec_path.ptr);
cl_must_pass(p_unlink(nsec_path.ptr));
- git_buf_dispose(&nsec_path);
+ git_str_dispose(&nsec_path);
return expect;
}