diff options
author | robot-piglet <[email protected]> | 2025-04-16 15:19:25 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-04-16 15:31:39 +0300 |
commit | f2d5d88031564a430ea49c32ad0dc35f22008c72 (patch) | |
tree | 71844377aa135ee30ad6b54003fd88a413a64dc9 | |
parent | f75824f460df8d8c9a9fccf972654ffeb9cb844f (diff) |
Intermediate changes
commit_hash:f16769226fca7335d2bcf5fb633bf82f06011d96
-rw-r--r-- | library/cpp/protobuf/json/ut/proto2json_ut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/protobuf/json/ut/proto2json_ut.cpp b/library/cpp/protobuf/json/ut/proto2json_ut.cpp index f5bcfac49db..ce7d119be72 100644 --- a/library/cpp/protobuf/json/ut/proto2json_ut.cpp +++ b/library/cpp/protobuf/json/ut/proto2json_ut.cpp @@ -968,10 +968,10 @@ Y_UNIT_TEST(TestMapAsObject) { auto& items = *proto.MutableItems(); items["key1"] = "value1"; - items["key2"] = "value2"; + items[""] = "value2"; items["key3"] = "value3"; - TString modelStr(R"_({"Items":{"key3":"value3","key2":"value2","key1":"value1"}})_"); + TString modelStr(R"_({"Items":{"key3":"value3","":"value2","key1":"value1"}})_"); TStringStream jsonStr; TProto2JsonConfig config; |