From 5141e76e9066d5ca03f62449fbb9475daefaa287 Mon Sep 17 00:00:00 2001 From: tanvi-jagtap Date: Fri, 19 Apr 2024 11:29:52 +0000 Subject: [PATCH] [grpc][Gpr_To_Absl_Logging] Migrating from gpr to absl logging GPR_ASSERT --- test/cpp/end2end/context_allocator_end2end_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/end2end/context_allocator_end2end_test.cc b/test/cpp/end2end/context_allocator_end2end_test.cc index d594b2cd11a..ae3222f7395 100644 --- a/test/cpp/end2end/context_allocator_end2end_test.cc +++ b/test/cpp/end2end/context_allocator_end2end_test.cc @@ -150,7 +150,7 @@ class ContextAllocatorEnd2endTestBase stub_->async()->Echo( &cli_ctx, &request, &response, [&request, &response, &done, &mu, &cv, val](Status s) { - CHECK_OK(s); + CHECK(s.ok()); EXPECT_EQ(request.message(), response.message()); std::lock_guard l(mu);