Skip to content
Snippets Groups Projects
Commit 6095bbf7 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

test: Use a 64-bit comparison for logging domains.

parent af26cd61
No related branches found
No related tags found
No related merge requests found
......@@ -631,7 +631,7 @@ mock_clock_skew_warning(const connection_t *conn, long apparent_skew,
(void)conn;
mock_apparent_skew = apparent_skew;
tt_int_op(trusted, OP_EQ, 1);
tt_int_op(domain, OP_EQ, LD_GENERAL);
tt_i64_op(domain, OP_EQ, LD_GENERAL);
tt_str_op(received, OP_EQ, "microdesc flavor consensus");
tt_str_op(source, OP_EQ, "CONSENSUS");
done:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment