Missing argument

reviewable/pr18586/r6
Yash Tibrewal 6 years ago
parent 327350ab39
commit 8eeb429db0
  1. 4
      test/cpp/end2end/xds_end2end_test.cc

@ -526,7 +526,7 @@ class XdsEnd2endTest : public ::testing::Test {
if (service_config_json != nullptr) {
grpc_error* error = GRPC_ERROR_NONE;
result.service_config =
grpc_core::ServiceConfig::Create(service_config_json);
grpc_core::ServiceConfig::Create(service_config_json, &error);
GRPC_ERROR_UNREF(error);
}
grpc_arg arg = grpc_core::FakeResolverResponseGenerator::MakeChannelArg(
@ -559,7 +559,7 @@ class XdsEnd2endTest : public ::testing::Test {
if (service_config_json != nullptr) {
grpc_error* error = GRPC_ERROR_NONE;
result.service_config =
grpc_core::ServiceConfig::Create(service_config_json);
grpc_core::ServiceConfig::Create(service_config_json, &error);
GRPC_ERROR_UNREF(error);
}
if (lb_channel_response_generator == nullptr) {

Loading…
Cancel
Save