aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/queue_ut.cpp
diff options
context:
space:
mode:
authora-romanov <a-romanov@yandex-team.ru>2022-02-10 16:48:10 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:10 +0300
commitaa2986a34bde73b2cdcea5080c4443b7cf2ba686 (patch)
tree410fbde59311309b774a0da147f79628c3429a2c /util/generic/queue_ut.cpp
parente77cfd118321c5b9c168fdee41b4e6c5706b8f68 (diff)
downloadydb-aa2986a34bde73b2cdcea5080c4443b7cf2ba686.tar.gz
Restoring authorship annotation for <a-romanov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/generic/queue_ut.cpp')
-rw-r--r--util/generic/queue_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/generic/queue_ut.cpp b/util/generic/queue_ut.cpp
index a33399e1048..96e40224ca6 100644
--- a/util/generic/queue_ut.cpp
+++ b/util/generic/queue_ut.cpp
@@ -4,7 +4,7 @@
#include <library/cpp/testing/unittest/registar.h>
-#include <utility>
+#include <utility>
Y_UNIT_TEST_SUITE(TYQueueTest) {
Y_UNIT_TEST(ConstructorsAndAssignments) {
@@ -22,7 +22,7 @@ Y_UNIT_TEST_SUITE(TYQueueTest) {
UNIT_ASSERT_VALUES_EQUAL(2, c1.size());
UNIT_ASSERT_VALUES_EQUAL(2, c2.size());
- container c3(std::move(c1));
+ container c3(std::move(c1));
UNIT_ASSERT_VALUES_EQUAL(0, c1.size());
UNIT_ASSERT_VALUES_EQUAL(2, c3.size());
@@ -34,7 +34,7 @@ Y_UNIT_TEST_SUITE(TYQueueTest) {
UNIT_ASSERT_VALUES_EQUAL(3, c3.size());
c2.push(400);
- c3 = std::move(c2);
+ c3 = std::move(c2);
UNIT_ASSERT_VALUES_EQUAL(0, c2.size());
UNIT_ASSERT_VALUES_EQUAL(4, c3.size());
@@ -54,7 +54,7 @@ Y_UNIT_TEST_SUITE(TYQueueTest) {
UNIT_ASSERT_VALUES_EQUAL(2, c1.size());
UNIT_ASSERT_VALUES_EQUAL(2, c2.size());
- container c3(std::move(c1));
+ container c3(std::move(c1));
UNIT_ASSERT_VALUES_EQUAL(0, c1.size());
UNIT_ASSERT_VALUES_EQUAL(2, c3.size());
@@ -66,7 +66,7 @@ Y_UNIT_TEST_SUITE(TYQueueTest) {
UNIT_ASSERT_VALUES_EQUAL(3, c3.size());
c2.push(400);
- c3 = std::move(c2);
+ c3 = std::move(c2);
UNIT_ASSERT_VALUES_EQUAL(0, c2.size());
UNIT_ASSERT_VALUES_EQUAL(4, c3.size());