aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/cgiparam
diff options
context:
space:
mode:
authordivankov <divankov@yandex-team.ru>2022-02-10 16:48:05 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:05 +0300
commitcd88d7933255d8690da34c7b1f7427cf2bb3ae23 (patch)
tree39e40694c8b41674a17b90f034e31d7cfcf20142 /library/cpp/cgiparam
parent37a2795395ba606e239b750ff2afb17905274ec4 (diff)
downloadydb-cd88d7933255d8690da34c7b1f7427cf2bb3ae23.tar.gz
Restoring authorship annotation for <divankov@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/cgiparam')
-rw-r--r--library/cpp/cgiparam/cgiparam_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/cgiparam/cgiparam_ut.cpp b/library/cpp/cgiparam/cgiparam_ut.cpp
index a562342084..fc13549c8b 100644
--- a/library/cpp/cgiparam/cgiparam_ut.cpp
+++ b/library/cpp/cgiparam/cgiparam_ut.cpp
@@ -51,7 +51,7 @@ Y_UNIT_TEST_SUITE(TCgiParametersTest) {
TCgiParameters c;
c.Scan(parsee);
- c.InsertUnescaped("d", "xxx");
+ c.InsertUnescaped("d", "xxx");
UNIT_ASSERT_VALUES_EQUAL(c.Print(), parsee + "&d=xxx");
}
@@ -197,7 +197,7 @@ Y_UNIT_TEST_SUITE(TCgiParametersTest) {
Y_UNIT_TEST(TestJoinUnescaped) {
TCgiParameters c;
- c.Scan("foo=1&foo=2");
+ c.Scan("foo=1&foo=2");
c.JoinUnescaped("foo", ';', "0");
UNIT_ASSERT_VALUES_EQUAL(c.Print(), "foo=1;2;0");