diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-05-15 18:00:38 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-05-15 18:00:38 -0400 |
commit | e1b3c1bbec0e78a41a79ed2d34abfb4a091393ea (patch) | |
tree | d8d63203f7bffa0af7df1b6915fe8639c06bbbab /src/test/test_dir_handle_get.c | |
parent | f9d8ade91242a702589e4e2ff2a280836fabb4da (diff) | |
download | tor-e1b3c1bbec0e78a41a79ed2d34abfb4a091393ea.tar.gz tor-e1b3c1bbec0e78a41a79ed2d34abfb4a091393ea.zip |
Test fix: always set address in new_dir_conn()
Diffstat (limited to 'src/test/test_dir_handle_get.c')
-rw-r--r-- | src/test/test_dir_handle_get.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/test_dir_handle_get.c b/src/test/test_dir_handle_get.c index 7d40db4543..75fe6249ad 100644 --- a/src/test/test_dir_handle_get.c +++ b/src/test/test_dir_handle_get.c @@ -64,6 +64,7 @@ new_dir_conn(void) { dir_connection_t *conn = dir_connection_new(AF_INET); tor_addr_from_ipv4h(&conn->base_.addr, 0x7f000001); + TO_CONN(conn)->address = tor_strdup("127.0.0.1"); return conn; } @@ -1718,7 +1719,6 @@ test_dir_handle_get_status_vote_current_consensus_too_old(void *data) MOCK(networkstatus_get_latest_consensus_by_flavor, mock_ns_get_by_flavor); conn = new_dir_conn(); - TO_CONN(conn)->address = tor_strdup("127.0.0.1"); setup_capture_of_logs(LOG_WARN); @@ -1815,7 +1815,6 @@ status_vote_current_consensus_ns_test(char **header, char **body, tt_str_op("ab", OP_EQ, geoip_get_country_name(1)); conn = new_dir_conn(); - TO_CONN(conn)->address = tor_strdup("127.0.0.1"); tt_int_op(0, OP_EQ, directory_handle_command_get(conn, GET("/tor/status-vote/current/consensus-ns"), NULL, 0)); |