summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-12-20 10:39:38 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-20 10:39:38 -0500
commit2824413f40e20bb1c02eb6e180208eca203645f3 (patch)
tree6afb47f97f66dddb7646dc2f280d6c50ca7b4d71
parent64c88c71995b5320d3951496b9b8f01ed2cf4a7b (diff)
parent0a1b1430c87824d5f5922827b6ca770a43e709ac (diff)
downloadtor-2824413f40e20bb1c02eb6e180208eca203645f3.tar.gz
tor-2824413f40e20bb1c02eb6e180208eca203645f3.zip
Merge branch 'maint-0.3.2' into release-0.3.2
-rw-r--r--src/test/test_hs_common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_hs_common.c b/src/test/test_hs_common.c
index b435a93e33..b9b76d15bd 100644
--- a/src/test/test_hs_common.c
+++ b/src/test/test_hs_common.c
@@ -1053,7 +1053,7 @@ are_responsible_hsdirs_equal(void)
{
int count = 0;
tt_int_op(smartlist_len(client_responsible_hsdirs), OP_EQ, 6);
- tt_int_op(smartlist_len(service_responsible_hsdirs), OP_EQ, 6);
+ tt_int_op(smartlist_len(service_responsible_hsdirs), OP_EQ, 8);
SMARTLIST_FOREACH_BEGIN(client_responsible_hsdirs,
const routerstatus_t *, c_rs) {
@@ -1415,7 +1415,7 @@ run_reachability_scenario(const reachability_cfg_t *cfg, int num_scenario)
cfg->client_fetch_next_desc, 0,
service_responsible_hsdirs);
cleanup_nodelist();
- tt_int_op(smartlist_len(service_responsible_hsdirs), OP_EQ, 6);
+ tt_int_op(smartlist_len(service_responsible_hsdirs), OP_EQ, 8);
UNMOCK(networkstatus_get_latest_consensus);
UNMOCK(networkstatus_get_live_consensus);
@@ -1605,7 +1605,7 @@ helper_test_hsdir_sync(networkstatus_t *ns,
/* Cleanup right now so we don't memleak on error. */
cleanup_nodelist();
/* Check that previous hsdirs were populated */
- tt_int_op(smartlist_len(desc->previous_hsdirs), OP_EQ, 6);
+ tt_int_op(smartlist_len(desc->previous_hsdirs), OP_EQ, 8);
/* 3) Initialize client time */
helper_set_consensus_and_system_time(ns, client_position);