diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-02-02 15:23:55 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-02 15:23:55 -0500 |
commit | 3bed8fdb91599b5e7c7946978c6221ba5db85463 (patch) | |
tree | 75c45998f4a01c4255961ac3f4b479d7ebe78007 /src/test/test_dos.c | |
parent | 475218c108ad84aa302f0daec013faab9ff778f2 (diff) | |
download | tor-3bed8fdb91599b5e7c7946978c6221ba5db85463.tar.gz tor-3bed8fdb91599b5e7c7946978c6221ba5db85463.zip |
Use tt_u64_op() for uint64_t inputs.
Diffstat (limited to 'src/test/test_dos.c')
-rw-r--r-- | src/test/test_dos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test_dos.c b/src/test/test_dos.c index 071926c287..9496b0735c 100644 --- a/src/test/test_dos.c +++ b/src/test/test_dos.c @@ -179,8 +179,8 @@ test_dos_bucket_refill(void *arg) uint64_t circ_rate = get_circuit_rate_per_second(); /* Check that the circuit rate is a positive number and smaller than the max * circuit count */ - tt_int_op(circ_rate, OP_GT, 1); - tt_int_op(circ_rate, OP_LT, max_circuit_count); + tt_u64_op(circ_rate, OP_GT, 1); + tt_u64_op(circ_rate, OP_LT, max_circuit_count); /* Register this client */ geoip_note_client_seen(GEOIP_CLIENT_CONNECT, addr, NULL, now); |