diff options
author | skalsin <skalsin@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:38 +0300 |
commit | 0ec5f3106fcb5e342ec13cdfad678bf4633580d5 (patch) | |
tree | 201e92c5c9e5d0123fc5f7be509649e36596dd0b /library/cpp/string_utils/quote/quote_ut.cpp | |
parent | a693106aae8a3a3c7236a4ae953058a9611d7a92 (diff) | |
download | ydb-0ec5f3106fcb5e342ec13cdfad678bf4633580d5.tar.gz |
Restoring authorship annotation for <skalsin@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/string_utils/quote/quote_ut.cpp')
-rw-r--r-- | library/cpp/string_utils/quote/quote_ut.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/string_utils/quote/quote_ut.cpp b/library/cpp/string_utils/quote/quote_ut.cpp index 6c552b279e..0f01b1beb8 100644 --- a/library/cpp/string_utils/quote/quote_ut.cpp +++ b/library/cpp/string_utils/quote/quote_ut.cpp @@ -310,10 +310,10 @@ Y_UNIT_TEST_SUITE(TQuoteTest) { Quote(s, ";,"); UNIT_ASSERT_VALUES_EQUAL("%2Fpath;tail%2Fpath,tail%2F", s.c_str()); } - + Y_UNIT_TEST(StringBuf) { - char r[100]; - char* end = Quote(r, "abc\0/path", ""); - UNIT_ASSERT_VALUES_EQUAL("abc\0%2Fpath", TStringBuf(r, end)); - } + char r[100]; + char* end = Quote(r, "abc\0/path", ""); + UNIT_ASSERT_VALUES_EQUAL("abc\0%2Fpath", TStringBuf(r, end)); + } } |