aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorsrezvanov <srezvanov@yandex-team.ru>2022-02-10 16:49:57 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:57 +0300
commit258e3d73d1d6bff562d3859aebe98b1e5ce7da7f (patch)
tree7fe74a1c92bc22f94206e4cb9d104241a4717735 /library
parentdd0ae2c9d72d021be79622c5d39bac4be1c8313e (diff)
downloadydb-258e3d73d1d6bff562d3859aebe98b1e5ce7da7f.tar.gz
Restoring authorship annotation for <srezvanov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library')
-rw-r--r--library/cpp/string_utils/base64/base64_decode_uneven_ut.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/string_utils/base64/base64_decode_uneven_ut.cpp b/library/cpp/string_utils/base64/base64_decode_uneven_ut.cpp
index c3ed068a37..d6ae40e8d4 100644
--- a/library/cpp/string_utils/base64/base64_decode_uneven_ut.cpp
+++ b/library/cpp/string_utils/base64/base64_decode_uneven_ut.cpp
@@ -19,7 +19,7 @@ Y_UNIT_TEST_SUITE(TBase64DecodeUneven) {
UNIT_ASSERT_VALUES_EQUAL(encoded, Base64Encode(wikipedia_slogan));
UNIT_ASSERT_VALUES_EQUAL(wikipedia_slogan, Base64DecodeUneven(encoded));
-
+
const TString encoded_url1 =
"TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx5IGJ5IGhpcyByZWFzb24sIGJ1dCBieSB0"
"aGlzIHNpbmd1bGFyIHBhc3Npb24gZnJvbSBvdGhlciBhbmltYWxzLCB3aGljaCBpcyBhIGx1"
@@ -34,7 +34,7 @@ Y_UNIT_TEST_SUITE(TBase64DecodeUneven) {
"LCBleGNlZWRzIHRoZSBzaG9ydCB2ZWhlbWVuY2Ugb2YgYW55IGNhcm5hbCBwbGVhc3VyZS4";
UNIT_ASSERT_VALUES_EQUAL(wikipedia_slogan, Base64DecodeUneven(encoded_url1));
UNIT_ASSERT_VALUES_EQUAL(wikipedia_slogan, Base64DecodeUneven(encoded_url2));
-
+
const TString lp = "Linkin Park";
UNIT_ASSERT_VALUES_EQUAL(lp, Base64DecodeUneven(Base64Encode(lp)));
UNIT_ASSERT_VALUES_EQUAL(lp, Base64DecodeUneven(Base64EncodeUrl(lp)));
@@ -43,4 +43,4 @@ Y_UNIT_TEST_SUITE(TBase64DecodeUneven) {
UNIT_ASSERT_VALUES_EQUAL(dp, Base64DecodeUneven(Base64Encode(dp)));
UNIT_ASSERT_VALUES_EQUAL(dp, Base64DecodeUneven(Base64EncodeUrl(dp)));
}
-}
+}