diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2015-04-01 21:08:24 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2015-04-01 21:10:39 +0200 |
commit | e10e6f78b17395ce6f3c341c1efd6da671c7c00c (patch) | |
tree | 9bf4cc7f359829a5a4f32b6afc3b10d57b164643 /src/test/test_entrynodes.c | |
parent | 86002a83d37287308543adfe44f3d5f2f4bdd3a5 (diff) | |
download | tor-e10e6f78b17395ce6f3c341c1efd6da671c7c00c.tar.gz tor-e10e6f78b17395ce6f3c341c1efd6da671c7c00c.zip |
Update entrynodes unit test for dirs
We no longer base our opinion on whether someone is a directory solely
on the routerstatus we might have for that relay, but also on a
routerinfo. Remove logic in test checking that. This broke unit tests in
05f7336624d6a47b3cf0f.
Reported by toralf on #tor-dev, thanks!
Diffstat (limited to 'src/test/test_entrynodes.c')
-rw-r--r-- | src/test/test_entrynodes.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c index 17cb9d9329..0011d3698a 100644 --- a/src/test/test_entrynodes.c +++ b/src/test/test_entrynodes.c @@ -162,9 +162,6 @@ populate_live_entry_guards_test_helper(int num_needed) False, all guards should have made_contact enabled. */ tt_int_op(entry->made_contact, OP_EQ, 1); - /* Since we don't have a routerstatus, all of the entry guards are - not directory servers. */ - tt_int_op(entry->is_dir_cache, OP_EQ, 0); } SMARTLIST_FOREACH_END(entry); /* First, try to get some fast guards. This should fail. */ |