From 656c9eb1d0ed386051b800ef6908058b28ccafbe Mon Sep 17 00:00:00 2001 From: macastelaz <34776182+macastelaz@users.noreply.github.com> Date: Fri, 24 Apr 2026 04:57:48 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/core/credentials/call/regional_access_boundary_fetcher.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/credentials/call/regional_access_boundary_fetcher.cc b/src/core/credentials/call/regional_access_boundary_fetcher.cc index ec35a6ce16b44..aba8540c8d258 100644 --- a/src/core/credentials/call/regional_access_boundary_fetcher.cc +++ b/src/core/credentials/call/regional_access_boundary_fetcher.cc @@ -212,7 +212,7 @@ void RegionalAccessBoundaryFetcher::Request::OnResponse( if (fetcher == nullptr) return; bool success = false; std::string encoded_locations; - absl::string_view response_body = ""; + absl::string_view response_body; if (response_.body != nullptr) { response_body = absl::string_view(response_.body, response_.body_length); } @@ -287,7 +287,7 @@ class EmailFetcher::EmailRequest final void OnResponse(grpc_error_handle error) { auto fetcher = fetcher_->RefIfNonZero(); if (fetcher == nullptr) return; - absl::string_view response_body = ""; + absl::string_view response_body; if (response_.body != nullptr) { response_body = absl::string_view(response_.body, response_.body_length); }