summaryrefslogtreecommitdiff
path: root/tests/config/readonly.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/config/readonly.c')
-rw-r--r--tests/config/readonly.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/config/readonly.c b/tests/config/readonly.c
index 5d544b8cb..a8901e394 100644
--- a/tests/config/readonly.c
+++ b/tests/config/readonly.c
@@ -25,7 +25,7 @@ void test_config_readonly__writing_to_readonly_fails(void)
cl_git_pass(git_config_add_backend(cfg, backend, GIT_CONFIG_LEVEL_GLOBAL, NULL, 0));
cl_git_fail_with(GIT_ENOTFOUND, git_config_set_string(cfg, "foo.bar", "baz"));
- cl_assert(!git_path_exists("global"));
+ cl_assert(!git_fs_path_exists("global"));
}
void test_config_readonly__writing_to_cfg_with_rw_precedence_succeeds(void)
@@ -41,8 +41,8 @@ void test_config_readonly__writing_to_cfg_with_rw_precedence_succeeds(void)
cl_git_pass(git_config_set_string(cfg, "foo.bar", "baz"));
- cl_assert(git_path_exists("local"));
- cl_assert(!git_path_exists("global"));
+ cl_assert(git_fs_path_exists("local"));
+ cl_assert(!git_fs_path_exists("global"));
cl_git_pass(p_unlink("local"));
}
@@ -59,7 +59,7 @@ void test_config_readonly__writing_to_cfg_with_ro_precedence_succeeds(void)
cl_git_pass(git_config_set_string(cfg, "foo.bar", "baz"));
- cl_assert(!git_path_exists("local"));
- cl_assert(git_path_exists("global"));
+ cl_assert(!git_fs_path_exists("local"));
+ cl_assert(git_fs_path_exists("global"));
cl_git_pass(p_unlink("global"));
}