[grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging GPR_ASSERT

pull/36436/head
tanvi-jagtap 11 months ago
parent 75b2114341
commit d56532988b
  1. 2
      test/core/transport/chaotic_good/frame_test.cc

@ -34,7 +34,7 @@ template <typename T>
void AssertRoundTrips(const T& input, FrameType expected_frame_type) {
HPackCompressor hpack_compressor;
auto serialized = input.Serialize(&hpack_compressor);
CHECK_GE(serialized.control.Length(), 24); // Initial output buffer size is 64 byte.
CHECK_GE(serialized.control.Length() ,24); // Initial output buffer size is 64 byte.
uint8_t header_bytes[24];
serialized.control.MoveFirstNBytesIntoBuffer(24, header_bytes);
auto header = FrameHeader::Parse(header_bytes);

Loading…
Cancel
Save