Skip to content
Snippets Groups Projects
Commit dbcd0b5f authored by David G. Quintas's avatar David G. Quintas Committed by GitHub
Browse files

Merge pull request #11735 from dgquintas/fix_codegen_full

Fix codegen_test_full
parents 6c1418e1 6636b503
No related branches found
No related tags found
No related merge requests found
...@@ -27,8 +27,8 @@ class CodegenTestFull : public ::testing::Test {}; ...@@ -27,8 +27,8 @@ class CodegenTestFull : public ::testing::Test {};
TEST_F(CodegenTestFull, Init) { TEST_F(CodegenTestFull, Init) {
grpc::CompletionQueue cq; grpc::CompletionQueue cq;
void* tag; void* tag = nullptr;
bool ok; bool ok = false;
cq.AsyncNext(&tag, &ok, gpr_time_0(GPR_CLOCK_REALTIME)); cq.AsyncNext(&tag, &ok, gpr_time_0(GPR_CLOCK_REALTIME));
ASSERT_FALSE(ok); ASSERT_FALSE(ok);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment