diff options
author | Yawning Angel <yawning@schwanenlied.me> | 2015-04-21 16:42:07 +0000 |
---|---|---|
committer | Yawning Angel <yawning@schwanenlied.me> | 2015-04-21 16:42:07 +0000 |
commit | 9a9ab455a3e1629f84ae3fc1c5af2fc7e41b1107 (patch) | |
tree | bf5e9671d90be6898bbc864aa9e4fbb36c2994f7 /src/test/test_address.c | |
parent | 06939551f4c081c46a09864465a4989ca8bb2e42 (diff) | |
download | tor-9a9ab455a3e1629f84ae3fc1c5af2fc7e41b1107.tar.gz tor-9a9ab455a3e1629f84ae3fc1c5af2fc7e41b1107.zip |
Use correct severity in the get_if_addrs tests.
Diffstat (limited to 'src/test/test_address.c')
-rw-r--r-- | src/test/test_address.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_address.c b/src/test/test_address.c index 52361624e5..d13d678f3d 100644 --- a/src/test/test_address.c +++ b/src/test/test_address.c @@ -222,7 +222,7 @@ test_address_get_if_addrs_ifaddrs(void *arg) (void)arg; - results = get_interface_addresses_ifaddrs(0); + results = get_interface_addresses_ifaddrs(LOG_ERR); tt_int_op(smartlist_len(results),>=,1); tt_assert(smartlist_contains_localhost_tor_addr(results)); @@ -245,7 +245,7 @@ test_address_get_if_addrs_win32(void *arg) (void)arg; - results = get_interface_addresses_win32(0); + results = get_interface_addresses_win32(LOG_ERR); tt_int_op(smartlist_len(results),>=,1); tt_assert(smartlist_contains_localhost_tor_addr(results)); |