aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/messagebus
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
committerbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
commitd570836295decdb827b4f95d75ebf2d8d9232b9b (patch)
tree859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/messagebus
parent91497eb27263e2feb35b53a90773e7207752a2ec (diff)
downloadydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/messagebus')
-rw-r--r--library/cpp/messagebus/test/ut/messagebus_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/messagebus/test/ut/messagebus_ut.cpp b/library/cpp/messagebus/test/ut/messagebus_ut.cpp
index 040f9b7702..8d2f4aa444 100644
--- a/library/cpp/messagebus/test/ut/messagebus_ut.cpp
+++ b/library/cpp/messagebus/test/ut/messagebus_ut.cpp
@@ -1059,7 +1059,7 @@ Y_UNIT_TEST_SUITE(TMessageBusTests) {
client.WaitReplies();
server.WaitForOnMessageCount(test_msg_count);
- };
+ }
Y_UNIT_TEST(TestConnectionAttempts) {
TObjectCountCheck objectCountCheck;
@@ -1091,7 +1091,7 @@ Y_UNIT_TEST_SUITE(TMessageBusTests) {
// First connection attempt is for connect call; second one is to get connect result.
UNIT_ASSERT_EQUAL(client.Session->GetConnectSyscallsNumForTest(noServerAddr), 4);
}
- };
+ }
Y_UNIT_TEST(TestConnectionAttemptsOnNoMessagesAndNotReconnectWhenIdle) {
TObjectCountCheck objectCountCheck;
@@ -1118,7 +1118,7 @@ Y_UNIT_TEST_SUITE(TMessageBusTests) {
UNIT_ASSERT_EQUAL(client.Session->GetConnectSyscallsNumForTest(noServerAddr), 2);
Sleep(TDuration::MilliSeconds(10 * clientConfig.RetryInterval));
UNIT_ASSERT_EQUAL(client.Session->GetConnectSyscallsNumForTest(noServerAddr), 2);
- };
+ }
Y_UNIT_TEST(TestConnectionAttemptsOnNoMessagesAndReconnectWhenIdle) {
TObjectCountCheck objectCountCheck;
@@ -1147,5 +1147,5 @@ Y_UNIT_TEST_SUITE(TMessageBusTests) {
// it is undeterministic how many reconnects will be during that amount of time
// but it should occur at least once
UNIT_ASSERT(client.Session->GetConnectSyscallsNumForTest(noServerAddr) > 2);
- };
-};
+ }
+}