From 435d5783d630b34b38e6a5f3521f6202778f1323 Mon Sep 17 00:00:00 2001 From: ctiller <10120821+ctiller@users.noreply.github.com> Date: Thu, 30 Jan 2025 15:23:14 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- test/core/transport/chttp2/hpack_sync_fuzzer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/transport/chttp2/hpack_sync_fuzzer.cc b/test/core/transport/chttp2/hpack_sync_fuzzer.cc index a9bc9685fe598..34c9af426c668 100644 --- a/test/core/transport/chttp2/hpack_sync_fuzzer.cc +++ b/test/core/transport/chttp2/hpack_sync_fuzzer.cc @@ -227,7 +227,7 @@ FUZZ_TEST(HpackSyncFuzzer, FuzzOneInput); auto ParseTestProto(const std::string& proto) { hpack_sync_fuzzer::Msg msg; - CHECK(proto2::TextFormat::ParseFromString(proto, &msg)); + CHECK(google::protobuf::TextFormat::ParseFromString(proto, &msg)); return msg; }