aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode/format_ut.cpp
diff options
context:
space:
mode:
authoryazevnul <yazevnul@yandex-team.ru>2022-02-10 16:46:46 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:46 +0300
commit8cbc307de0221f84c80c42dcbe07d40727537e2c (patch)
tree625d5a673015d1df891e051033e9fcde5c7be4e5 /library/cpp/monlib/encode/format_ut.cpp
parent30d1ef3941e0dc835be7609de5ebee66958f215a (diff)
downloadydb-8cbc307de0221f84c80c42dcbe07d40727537e2c.tar.gz
Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/monlib/encode/format_ut.cpp')
-rw-r--r--library/cpp/monlib/encode/format_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/monlib/encode/format_ut.cpp b/library/cpp/monlib/encode/format_ut.cpp
index 22a0e30c03..516d89cd3f 100644
--- a/library/cpp/monlib/encode/format_ut.cpp
+++ b/library/cpp/monlib/encode/format_ut.cpp
@@ -9,7 +9,7 @@
using namespace NMonitoring;
-Y_UNIT_TEST_SUITE(TFormatTest) {
+Y_UNIT_TEST_SUITE(TFormatTest) {
Y_UNIT_TEST(ContentTypeHeader) {
UNIT_ASSERT_EQUAL(FormatFromContentType(""), EFormat::UNKNOWN);
UNIT_ASSERT_EQUAL(FormatFromContentType("application/json;some=stuff"), EFormat::JSON);
@@ -18,7 +18,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
UNIT_ASSERT_EQUAL(FormatFromContentType(";application/xml"), EFormat::UNKNOWN);
}
- Y_UNIT_TEST(AcceptHeader) {
+ Y_UNIT_TEST(AcceptHeader) {
UNIT_ASSERT_EQUAL(FormatFromAcceptHeader(""), EFormat::UNKNOWN);
UNIT_ASSERT_EQUAL(FormatFromAcceptHeader("*/*"), EFormat::UNKNOWN);
@@ -63,7 +63,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
EFormat::PROMETHEUS);
}
- Y_UNIT_TEST(FormatToStrFromStr) {
+ Y_UNIT_TEST(FormatToStrFromStr) {
const std::array<EFormat, 6> formats = {{
EFormat::UNKNOWN,
EFormat::SPACK,
@@ -80,7 +80,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
}
}
- Y_UNIT_TEST(AcceptEncodingHeader) {
+ Y_UNIT_TEST(AcceptEncodingHeader) {
UNIT_ASSERT_EQUAL(
CompressionFromAcceptEncodingHeader(""),
ECompression::UNKNOWN);
@@ -118,7 +118,7 @@ Y_UNIT_TEST_SUITE(TFormatTest) {
ECompression::LZ4);
}
- Y_UNIT_TEST(CompressionToStrFromStr) {
+ Y_UNIT_TEST(CompressionToStrFromStr) {
const std::array<ECompression, 5> algs = {{
ECompression::UNKNOWN,
ECompression::IDENTITY,