aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
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
commitf4d85909b8d19058a845fd3f7f22a0a43f126ffe (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp
parent258e3d73d1d6bff562d3859aebe98b1e5ce7da7f (diff)
downloadydb-f4d85909b8d19058a845fd3f7f22a0a43f126ffe.tar.gz
Restoring authorship annotation for <srezvanov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp')
-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 d6ae40e8d4..c3ed068a37 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)));
}
-}
+}