aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/ut
diff options
context:
space:
mode:
authora-square <a-square@yandex-team.ru>2022-02-10 16:50:24 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:24 +0300
commit34f3f9bd7972f67d913075206081554a3e39a0de (patch)
tree89df462bfae95c8d9063871a9eae476233768b09 /library/cpp/json/ut
parente7879def805c52076a0b162a0270dfb229379d4e (diff)
downloadydb-34f3f9bd7972f67d913075206081554a3e39a0de.tar.gz
Restoring authorship annotation for <a-square@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json/ut')
-rw-r--r--library/cpp/json/ut/json_writer_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/json/ut/json_writer_ut.cpp b/library/cpp/json/ut/json_writer_ut.cpp
index ca11d34dad..e43d9d2caa 100644
--- a/library/cpp/json/ut/json_writer_ut.cpp
+++ b/library/cpp/json/ut/json_writer_ut.cpp
@@ -16,8 +16,8 @@ Y_UNIT_TEST_SUITE(TJsonWriterTest) {
TJsonWriter json(&out, false);
json.OpenMap();
json.Write("key1", (ui16)1);
- json.WriteKey("key2");
- json.Write((i32)2);
+ json.WriteKey("key2");
+ json.Write((i32)2);
json.Write("key3", (ui64)3);
UNIT_ASSERT(out.Empty());