Change size of buffer json

pull/13171/head
Bernardo Bruning 3 years ago
parent 4a3a7d9777
commit 7f3f0a24f5
  1. 4
      tests/test_cpp.cc

@ -171,8 +171,8 @@ TEST(Cpp, TimestampEncoder) {
for(long timestamp: timestamps) {
google_protobuf_Timestamp_set_seconds(timestamp_upb, timestamp);
char* json = new char[300];
size_t size = upb_JsonEncode(timestamp_upb, md.ptr(), NULL, 0, json, 300, NULL);
char* json = new char[23];
size_t size = upb_JsonEncode(timestamp_upb, md.ptr(), NULL, 0, json, 23, NULL);
bool result = upb_JsonDecode(json, size, timestamp_upb_decoded, md.ptr(), NULL, 0, arena.ptr(), NULL);
const long timestamp_decoded = google_protobuf_Timestamp_seconds(timestamp_upb_decoded);

Loading…
Cancel
Save