summaryrefslogtreecommitdiff
path: root/tests/online/fetch.c
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2014-11-08 13:25:51 +0100
committerCarlos Martín Nieto <cmn@dwim.me>2014-11-08 13:28:27 +0100
commit209425ce26d777794e9995f757656c7731df087e (patch)
tree5e4788483721b5f1e17c83c15873c36f47f64806 /tests/online/fetch.c
parent4e1b3b3b7186b017223b8302a51289ff92ccba25 (diff)
downloadlibgit2-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/online/fetch.c')
-rw-r--r--tests/online/fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/online/fetch.c b/tests/online/fetch.c
index ce92ee82b..ec16dd2fd 100644
--- a/tests/online/fetch.c
+++ b/tests/online/fetch.c
@@ -120,7 +120,7 @@ void test_online_fetch__doesnt_retrieve_a_pack_when_the_repository_is_up_to_date
cl_git_pass(git_repository_open(&_repository, "./fetch/lg2"));
- cl_git_pass(git_remote_load(&remote, _repository, "origin"));
+ cl_git_pass(git_remote_lookup(&remote, _repository, "origin"));
cl_git_pass(git_remote_connect(remote, GIT_DIRECTION_FETCH));
cl_assert_equal_i(false, invoked);