Remove hardcode sizes in buffer and increase buffer to 128

pull/13171/head
Bernardo Bruning 3 years ago
parent 204971e5db
commit a110d80186
  1. 4
      tests/test_cpp.cc

@ -171,8 +171,8 @@ TEST(Cpp, TimestampEncoder) {
for(long timestamp: timestamps) { for(long timestamp: timestamps) {
google_protobuf_Timestamp_set_seconds(timestamp_upb, timestamp); google_protobuf_Timestamp_set_seconds(timestamp_upb, timestamp);
char json[23]; char json[128];
size_t size = upb_JsonEncode(timestamp_upb, md.ptr(), NULL, 0, json, 23, NULL); size_t size = upb_JsonEncode(timestamp_upb, md.ptr(), NULL, 0, json, sizeof(json), NULL);
bool result = upb_JsonDecode(json, size, timestamp_upb_decoded, md.ptr(), NULL, 0, arena.ptr(), 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); const long timestamp_decoded = google_protobuf_Timestamp_seconds(timestamp_upb_decoded);

Loading…
Cancel
Save