aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/threading/queue/tune_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:48 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:48 +0300
commit9abfb1a53b7f7b791444d1378e645d8fad9b06ed (patch)
tree49e222ea1c5804306084bb3ae065bb702625360f /library/cpp/threading/queue/tune_ut.cpp
parent8cbc307de0221f84c80c42dcbe07d40727537e2c (diff)
downloadydb-9abfb1a53b7f7b791444d1378e645d8fad9b06ed.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/threading/queue/tune_ut.cpp')
-rw-r--r--library/cpp/threading/queue/tune_ut.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/library/cpp/threading/queue/tune_ut.cpp b/library/cpp/threading/queue/tune_ut.cpp
index 34086ccf0f..7e980d3e27 100644
--- a/library/cpp/threading/queue/tune_ut.cpp
+++ b/library/cpp/threading/queue/tune_ut.cpp
@@ -19,8 +19,8 @@ DeclareTuneTypeParam(TweakStructB, TStructB);
DeclareTuneValueParam(TweakParam1, ui32, Param1);
DeclareTuneValueParam(TweakParam2, ui32, Param2);
-Y_UNIT_TEST_SUITE(TestTuning) {
- Y_UNIT_TEST(Defaults) {
+Y_UNIT_TEST_SUITE(TestTuning) {
+ Y_UNIT_TEST(Defaults) {
using TTuned = TTune<TDefaults>;
using TunedA = TTuned::TStructA;
using TunedB = TTuned::TStructB;
@@ -35,7 +35,7 @@ Y_UNIT_TEST_SUITE(TestTuning) {
UNIT_ASSERT_EQUAL(param2, 42);
}
- Y_UNIT_TEST(TuneStructA) {
+ Y_UNIT_TEST(TuneStructA) {
struct TMyStruct {
};
@@ -56,7 +56,7 @@ Y_UNIT_TEST_SUITE(TestTuning) {
UNIT_ASSERT_EQUAL(param2, 42);
}
- Y_UNIT_TEST(TuneParam1) {
+ Y_UNIT_TEST(TuneParam1) {
using TTuned = TTune<TDefaults, TweakParam1<24>>;
using TunedA = TTuned::TStructA;
@@ -72,7 +72,7 @@ Y_UNIT_TEST_SUITE(TestTuning) {
UNIT_ASSERT_EQUAL(param2, 42);
}
- Y_UNIT_TEST(TuneStructAAndParam1) {
+ Y_UNIT_TEST(TuneStructAAndParam1) {
struct TMyStruct {
};
@@ -94,7 +94,7 @@ Y_UNIT_TEST_SUITE(TestTuning) {
UNIT_ASSERT_EQUAL(param2, 42);
}
- Y_UNIT_TEST(TuneParam1AndStructA) {
+ Y_UNIT_TEST(TuneParam1AndStructA) {
struct TMyStruct {
};