aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/list_ut.cpp
diff options
context:
space:
mode:
authorermolovd <ermolovd@yandex-team.ru>2022-02-10 16:47:53 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:47:53 +0300
commit2a4a975b112fa0fa138abc7457fe67e0e1e7fd02 (patch)
treec0748b5dcbade83af788c0abfa89c0383d6b779c /util/generic/list_ut.cpp
parentb91bcef7c99a119b0846479ef71bfab4beec72ca (diff)
downloadydb-2a4a975b112fa0fa138abc7457fe67e0e1e7fd02.tar.gz
Restoring authorship annotation for <ermolovd@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/list_ut.cpp')
-rw-r--r--util/generic/list_ut.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/util/generic/list_ut.cpp b/util/generic/list_ut.cpp
index 7101ee1843..9e60ecf01b 100644
--- a/util/generic/list_ut.cpp
+++ b/util/generic/list_ut.cpp
@@ -1,14 +1,14 @@
-#include "list.h"
-
+#include "list.h"
+
#include <library/cpp/testing/unittest/registar.h>
-
+
Y_UNIT_TEST_SUITE(TYListSuite) {
Y_UNIT_TEST(TestInitializerList) {
TList<int> l = {3, 42, 6};
TList<int> expected;
- expected.push_back(3);
- expected.push_back(42);
- expected.push_back(6);
- UNIT_ASSERT_VALUES_EQUAL(l, expected);
- }
-}
+ expected.push_back(3);
+ expected.push_back(42);
+ expected.push_back(6);
+ UNIT_ASSERT_VALUES_EQUAL(l, expected);
+ }
+}