Skip to content
Snippets Groups Projects
Commit 6636b503 authored by David Garcia Quintas's avatar David Garcia Quintas
Browse files

Fix codegen_test_full

parent 6c1418e1
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