diff options
author | mowgli <mowgli@yandex-team.ru> | 2022-02-10 16:49:25 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:25 +0300 |
commit | 56c39b3cf908e7202b1f7551a1653681e8015607 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/generic/queue_ut.cpp | |
parent | 89afbbe4ca0e02e386dd4df08f7945f190dc1b84 (diff) | |
download | ydb-56c39b3cf908e7202b1f7551a1653681e8015607.tar.gz |
Restoring authorship annotation for <mowgli@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/queue_ut.cpp')
-rw-r--r-- | util/generic/queue_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/queue_ut.cpp b/util/generic/queue_ut.cpp index 122d4eabd65..a33399e1048 100644 --- a/util/generic/queue_ut.cpp +++ b/util/generic/queue_ut.cpp @@ -12,10 +12,10 @@ Y_UNIT_TEST_SUITE(TYQueueTest) { using container = TQueue<int>; container c1; - UNIT_ASSERT(!c1); + UNIT_ASSERT(!c1); c1.push(100); c1.push(200); - UNIT_ASSERT(c1); + UNIT_ASSERT(c1); container c2(c1); @@ -44,10 +44,10 @@ Y_UNIT_TEST_SUITE(TYQueueTest) { using container = TPriorityQueue<int>; container c1; - UNIT_ASSERT(!c1); + UNIT_ASSERT(!c1); c1.push(100); c1.push(200); - UNIT_ASSERT(c1); + UNIT_ASSERT(c1); container c2(c1); |