diff options
author | David Goulet <dgoulet@torproject.org> | 2024-05-30 16:29:56 +0000 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2024-05-30 16:29:56 +0000 |
commit | 5c0a0f7da05905693edb0916967ad25f3edd0067 (patch) | |
tree | cb0bb9b450040c0d16eadd16c34b117f9935fe80 /src/test | |
parent | 475778bb2bf083695199996dd65e719d16c615fb (diff) | |
parent | 39ba9ce0d7913ceb53fc1f1b4e2c2c129099fc4f (diff) | |
download | tor-5c0a0f7da05905693edb0916967ad25f3edd0067.tar.gz tor-5c0a0f7da05905693edb0916967ad25f3edd0067.zip |
Merge branch 'ticket40689_048_01' into 'main'
dirauth: Add new faravahar
Closes #40689
See merge request tpo/core/tor!819
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_config.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/test_config.c b/src/test/test_config.c index a53d0b8227..c45b10657b 100644 --- a/src/test/test_config.c +++ b/src/test/test_config.c @@ -2003,10 +2003,10 @@ test_config_adding_default_trusted_dir_servers(void *arg) tt_int_op(get_n_authorities(BRIDGE_DIRINFO), OP_EQ, 1); tt_int_op(smartlist_len(router_get_fallback_dir_servers()), OP_EQ, 1); - /* Assume we have eight V3 authorities */ + /* Assume we have nine V3 authorities */ add_default_trusted_dir_authorities(V3_DIRINFO); - tt_int_op(get_n_authorities(V3_DIRINFO), OP_EQ, 8); - tt_int_op(smartlist_len(router_get_fallback_dir_servers()), OP_EQ, 9); + tt_int_op(get_n_authorities(V3_DIRINFO), OP_EQ, 9); + tt_int_op(smartlist_len(router_get_fallback_dir_servers()), OP_EQ, 10); done: clear_dir_servers(); |