Skip to content
Snippets Groups Projects
Commit beddbdae authored by David Klempner's avatar David Klempner
Browse files

Merge pull request #94 from ctiller/fix

clang compile fixes
parents ed3e0b1a 33a0b83a
No related branches found
No related tags found
No related merge requests found
......@@ -494,4 +494,5 @@ void cq_expect_finished(cq_verifier *v, void *tag, ...) {
void cq_expect_server_shutdown(cq_verifier *v, void *tag) {
add(v, GRPC_SERVER_SHUTDOWN, tag);
}
\ No newline at end of file
}
......@@ -143,7 +143,7 @@ static void test_early_server_shutdown_finishes_inflight_calls(
cq_expect_server_shutdown(v_server, tag(0xdead));
cq_verify(v_server);
cq_expect_finished_with_status(v_client, tag(3), GRPC_OP_OK, NULL, NULL);
cq_expect_finished_with_status(v_client, tag(3), GRPC_STATUS_OK, NULL, NULL);
cq_verify(v_client);
grpc_call_destroy(c);
......
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