diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-03 00:51:09 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-09 07:30:35 -0500 |
commit | 73b83b8f1a92aee93543095c96ae59ed6ba064a2 (patch) | |
tree | 25ce39b07ca6823fe80c0f0ce6896187c051a210 /src/test/test_dir_handle_get.c | |
parent | 3ce2304c6d031020cd8a1f00dee6e87fbf40ecd4 (diff) | |
download | tor-73b83b8f1a92aee93543095c96ae59ed6ba064a2.tar.gz tor-73b83b8f1a92aee93543095c96ae59ed6ba064a2.zip |
Remove extra ; from tt_assert() macro definition.
We were actually omitting the semicolon in a few places, leading to
confusing indentation and some cocci failures.
Diffstat (limited to 'src/test/test_dir_handle_get.c')
-rw-r--r-- | src/test/test_dir_handle_get.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/test_dir_handle_get.c b/src/test/test_dir_handle_get.c index 2b311a2f2c..ffe9045225 100644 --- a/src/test/test_dir_handle_get.c +++ b/src/test/test_dir_handle_get.c @@ -258,7 +258,7 @@ test_dir_handle_get_rendezvous2_not_found_if_not_encrypted(void *data) conn = new_dir_conn(); // connection is not encrypted - tt_assert(!connection_dir_is_encrypted(conn)) + tt_assert(!connection_dir_is_encrypted(conn)); tt_int_op(directory_handle_command_get(conn, RENDEZVOUS2_GET(), NULL, 0), OP_EQ, 0); |