Fix test compile

reviewable/pr13883/r1
ncteisen 7 years ago
parent a4533974da
commit 765cc95552
  1. 2
      test/core/channel/channel_tracer_test.cc

@ -59,7 +59,7 @@ static void validate_tracer_data_matches_uuid_lookup(
char* tracer_json_str = tracer->RenderTrace(true); char* tracer_json_str = tracer->RenderTrace(true);
char* uuid_lookup_json_str = char* uuid_lookup_json_str =
ChannelTracer::GetChannelTraceFromUuid(uuid, true); ChannelTracer::GetChannelTraceFromUuid(uuid, true);
strcmp(tracer_json_str, uuid_lookup_json_str); GPR_ASSERT(strcmp(tracer_json_str, uuid_lookup_json_str) == 0);
gpr_free(tracer_json_str); gpr_free(tracer_json_str);
gpr_free(uuid_lookup_json_str); gpr_free(uuid_lookup_json_str);
} }

Loading…
Cancel
Save