Fix missing file and line (#30269)

pull/30274/head
Esun Kim 3 years ago committed by GitHub
parent ee3c400330
commit 0e16835fe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      test/core/channel/minimal_stack_is_minimal_test.cc

@ -153,7 +153,8 @@ static void check_stack(const char* file, int line, const char* transport_name,
std::string got = absl::StrJoin(parts, ", ");
// figure out result, log if there's an error
EXPECT_EQ(got, expect) << "transport=" << transport_name << " stack_type="
EXPECT_EQ(got, expect) << "file=" << file << " line=" << line
<< " transport=" << transport_name << " stack_type="
<< grpc_channel_stack_type_string(
static_cast<grpc_channel_stack_type>(
channel_stack_type))

Loading…
Cancel
Save