diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2014-03-26 11:15:57 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-04-01 13:38:04 +0200 |
| commit | fd536d29c127648abb2ce5f6f619135ce69b9800 (patch) | |
| tree | 8113aac1ee75b94d8637ca8519a456b54c826900 /tests/network/remote/remotes.c | |
| parent | 77b699e0da3d4a4fed742893bd172f3ee7b936d5 (diff) | |
| download | libgit2-fd536d29c127648abb2ce5f6f619135ce69b9800.tar.gz | |
remote: rename inmemory to anonymous and swap url and fetch order
The order in this function is the opposite to what
create_with_fetchspec() has, so change this one, as url-then-refspec is
what git does.
As we need to break compilation and the swap doesn't do that, let's take
this opportunity to rename in-memory remotes to anonymous as that's
really what sets them apart.
Diffstat (limited to 'tests/network/remote/remotes.c')
| -rw-r--r-- | tests/network/remote/remotes.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/network/remote/remotes.c b/tests/network/remote/remotes.c index fe40d1085..306ccaee5 100644 --- a/tests/network/remote/remotes.c +++ b/tests/network/remote/remotes.c @@ -66,7 +66,7 @@ void test_network_remote_remotes__error_when_no_push_available(void) git_transport *t; git_push *p; - cl_git_pass(git_remote_create_inmemory(&r, _repo, NULL, cl_fixture("testrepo.git"))); + cl_git_pass(git_remote_create_anonymous(&r, _repo, cl_fixture("testrepo.git"), NULL)); cl_git_pass(git_transport_local(&t,r,NULL)); @@ -343,7 +343,7 @@ void test_network_remote_remotes__cannot_save_an_inmemory_remote(void) { git_remote *remote; - cl_git_pass(git_remote_create_inmemory(&remote, _repo, NULL, "git://github.com/libgit2/libgit2")); + cl_git_pass(git_remote_create_anonymous(&remote, _repo, "git://github.com/libgit2/libgit2", NULL)); cl_assert_equal_p(NULL, git_remote_name(remote)); @@ -436,7 +436,7 @@ void test_network_remote_remotes__check_structure_version(void) git_remote_free(_remote); _remote = NULL; - cl_git_pass(git_remote_create_inmemory(&_remote, _repo, NULL, "test-protocol://localhost")); + cl_git_pass(git_remote_create_anonymous(&_remote, _repo, "test-protocol://localhost", NULL)); transport.version = 0; cl_git_fail(git_remote_set_transport(_remote, &transport)); @@ -503,7 +503,7 @@ void test_network_remote_remotes__query_refspecs(void) git_strarray array; int i; - cl_git_pass(git_remote_create_inmemory(&remote, _repo, NULL, "git://github.com/libgit2/libgit2")); + cl_git_pass(git_remote_create_anonymous(&remote, _repo, "git://github.com/libgit2/libgit2", NULL)); for (i = 0; i < 3; i++) { cl_git_pass(git_remote_add_fetch(remote, fetch_refspecs[i])); |
