Skip to content

Commit

Permalink
Remove absl::string_view(nullptr) use as it is deprecated (#21549)
Browse files Browse the repository at this point in the history
Signed-off-by: Yan Avlasov <[email protected]>
  • Loading branch information
yanavlasov authored Jun 3, 2022
1 parent 82934d6 commit 97d599f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ TEST_F(GrpcHttp1BridgeFilterTest, ProtobufUpgradedHeaderSanitized) {
EXPECT_CALL(decoder_callbacks_, clearRouteCache());
EXPECT_EQ(Http::FilterHeadersStatus::Continue, filter_->decodeHeaders(request_headers, false));
EXPECT_EQ(Http::Headers::get().ContentTypeValues.Grpc, request_headers.getContentTypeValue());
EXPECT_EQ(nullptr, request_headers.getContentLengthValue());
EXPECT_EQ("", request_headers.getContentLengthValue());
}

} // namespace
Expand Down

0 comments on commit 97d599f

Please sign in to comment.