From: Nick Mathewson Date: Tue, 5 Jul 2016 16:52:19 +0000 (-0400) Subject: Repair unit test that assumed we have 9 dirauths. X-Git-Tag: tor-0.2.8.5-rc~11^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e99cc8740f793ba3796408c6f23bf35f12572193;p=thirdparty%2Ftor.git Repair unit test that assumed we have 9 dirauths. --- diff --git a/src/test/test_config.c b/src/test/test_config.c index 6d9b4916e3..90ea4da87d 100644 --- a/src/test/test_config.c +++ b/src/test/test_config.c @@ -1630,10 +1630,10 @@ test_config_adding_default_trusted_dir_servers(void *arg) tt_assert(get_n_authorities(BRIDGE_DIRINFO) == 1); tt_assert(smartlist_len(router_get_fallback_dir_servers()) == 1); - /* Assume we have nine V3 authorities */ + /* Assume we have eight V3 authorities */ add_default_trusted_dir_authorities(V3_DIRINFO); - tt_assert(get_n_authorities(V3_DIRINFO) == 9); - tt_assert(smartlist_len(router_get_fallback_dir_servers()) == 10); + tt_int_op(get_n_authorities(V3_DIRINFO), OP_EQ, 8); + tt_int_op(smartlist_len(router_get_fallback_dir_servers()), OP_EQ, 9); done: clear_dir_servers();