Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-11-08 15:25:51 +0300
committerCarlos Martín Nieto <cmn@dwim.me>2014-11-08 15:28:27 +0300
commit209425ce26d777794e9995f757656c7731df087e (patch)
tree5e4788483721b5f1e17c83c15873c36f47f64806 /tests/submodule
parent4e1b3b3b7186b017223b8302a51289ff92ccba25 (diff)
remote: rename _load() to _lookup()
This brings it in line with the rest of the lookup functions.
Diffstat (limited to 'tests/submodule')
-rw-r--r--tests/submodule/add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/submodule/add.c b/tests/submodule/add.c
index a3e3502b7..05dbafd88 100644
--- a/tests/submodule/add.c
+++ b/tests/submodule/add.c
@@ -97,7 +97,7 @@ void test_submodule_add__url_relative(void)
cl_git_pass(git_remote_rename(&problems, g_repo, "origin", "test_remote"));
cl_assert_equal_i(0, problems.count);
git_strarray_free(&problems);
- cl_git_fail(git_remote_load(&remote, g_repo, "origin"));
+ cl_git_fail(git_remote_lookup(&remote, g_repo, "origin"));
cl_git_pass(
git_submodule_add_setup(&sm, g_repo, "../TestGitRepository", "TestGitRepository", 1)