diff options
author | Justin Spahr-Summers <Justin.SpahrSummers@gmail.com> | 2012-11-05 10:45:26 -0800 |
---|---|---|
committer | Justin Spahr-Summers <Justin.SpahrSummers@gmail.com> | 2012-11-05 10:45:26 -0800 |
commit | f358ec143c8c9952227d31cd21c24f8c9be23d3c (patch) | |
tree | ff6340e951074db103ec2a14652ff56a52600662 | |
parent | 1fe99aeea3d9e2a5b9637f3d76273335e6366e36 (diff) | |
download | libgit2-f358ec143c8c9952227d31cd21c24f8c9be23d3c.tar.gz |
Don't expect the 'empty-remote-url' remote to be listed
CC @nulltoken
-rw-r--r-- | tests-clar/network/remotes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/network/remotes.c b/tests-clar/network/remotes.c index 1d58aba75..481dece5c 100644 --- a/tests-clar/network/remotes.c +++ b/tests-clar/network/remotes.c @@ -183,13 +183,13 @@ void test_network_remotes__list(void) git_config *cfg; cl_git_pass(git_remote_list(&list, _repo)); - cl_assert(list.count == 4); + cl_assert(list.count == 3); git_strarray_free(&list); cl_git_pass(git_repository_config(&cfg, _repo)); cl_git_pass(git_config_set_string(cfg, "remote.specless.url", "http://example.com")); cl_git_pass(git_remote_list(&list, _repo)); - cl_assert(list.count == 5); + cl_assert(list.count == 4); git_strarray_free(&list); git_config_free(cfg); |