summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-12-16 11:49:07 -0500
committerNick Mathewson <nickm@torproject.org>2016-12-16 11:49:07 -0500
commit79a24750ba8b3b1efc87c5b43d91229b6478ef82 (patch)
treeb1711fe381499e53b481dbaa8ab9c94cfdfb08d3
parentc52c47ae6f0da5a94b0605fd84fd469a29db962c (diff)
downloadtor-79a24750ba8b3b1efc87c5b43d91229b6478ef82.tar.gz
tor-79a24750ba8b3b1efc87c5b43d91229b6478ef82.zip
Fix broken entrynodes/retry_unreachable test
I broke this with 20292ec4974b777d430e7962cc38349c5f82b220 when I changed the primary guard retry schedule.
-rw-r--r--src/test/test_entrynodes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c
index 002411377c..68161138a3 100644
--- a/src/test/test_entrynodes.c
+++ b/src/test/test_entrynodes.c
@@ -2293,7 +2293,7 @@ test_entry_guard_retry_unreachable(void *arg)
tt_int_op(g2->is_reachable, OP_EQ, GUARD_REACHABLE_NO);
g1->is_reachable = GUARD_REACHABLE_NO;
- g1->last_tried_to_connect = start + 35*60;
+ g1->last_tried_to_connect = start + 55*60;
/* After 1 hour, we'll retry the nonprimary one. */
update_approx_time(start + 61 * 60);