diff options
author | j-berman <justinberman@protonmail.com> | 2022-07-06 16:47:34 -0700 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-07-08 15:10:03 -0700 |
commit | a82fba4b7b944a54d2a14922f44d7eee367e4912 (patch) | |
tree | 6281ddd1008cbd92b421acc1c88cccdf3c8a60a7 /tests/unit_tests | |
parent | connection: fix implementation (diff) | |
download | monero-a82fba4b7b944a54d2a14922f44d7eee367e4912.tar.xz |
address PR comments
Diffstat (limited to 'tests/unit_tests')
-rw-r--r-- | tests/unit_tests/epee_boosted_tcp_server.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/unit_tests/epee_boosted_tcp_server.cpp b/tests/unit_tests/epee_boosted_tcp_server.cpp index d64431edf..c08a86a5e 100644 --- a/tests/unit_tests/epee_boosted_tcp_server.cpp +++ b/tests/unit_tests/epee_boosted_tcp_server.cpp @@ -617,7 +617,7 @@ TEST(boosted_tcp_server, strand_deadlock) void after_init_connection() { unique_lock_t guard(lock); - if (not context.m_is_income) { + if (!context.m_is_income) { guard.unlock(); socket->do_send(byte_slice_t{"."}); } @@ -628,7 +628,7 @@ TEST(boosted_tcp_server, strand_deadlock) bool handle_recv(const char *data, size_t bytes_transferred) { unique_lock_t guard(lock); - if (not context.m_is_income) { + if (!context.m_is_income) { if (context.m_recv_cnt == 1024) { guard.unlock(); socket->do_send(byte_slice_t{"."}); @@ -652,9 +652,9 @@ TEST(boosted_tcp_server, strand_deadlock) void release_protocol() { unique_lock_t guard(lock); - if(not context.m_is_income - and context.m_recv_cnt == 1024 - and context.m_send_cnt == 2 + if(!context.m_is_income + && context.m_recv_cnt == 1024 + && context.m_send_cnt == 2 ) { guard.unlock(); config.notify_success(); |