diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-11-08 13:25:51 +0100 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-11-08 13:28:27 +0100 |
commit | 209425ce26d777794e9995f757656c7731df087e (patch) | |
tree | 5e4788483721b5f1e17c83c15873c36f47f64806 /tests/submodule/add.c | |
parent | 4e1b3b3b7186b017223b8302a51289ff92ccba25 (diff) | |
download | libgit2-209425ce26d777794e9995f757656c7731df087e.tar.gz |
remote: rename _load() to _lookup()cmn/remote-lookup
This brings it in line with the rest of the lookup functions.
Diffstat (limited to 'tests/submodule/add.c')
-rw-r--r-- | tests/submodule/add.c | 2 |
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) |