Fix CQ verifier (#30670)

* Fix CQ verifier

* Add missing semi-colon

Co-authored-by: Craig Tiller <ctiller@google.com>
pull/30691/head
Yash Tibrewal 3 years ago committed by GitHub
parent f93c1ef1fe
commit 25e7110003
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      test/core/end2end/cq_verifier.cc

@ -253,8 +253,7 @@ void CqVerifier::VerifyEmpty(Duration timeout) {
GPR_ASSERT(expectations_.empty());
grpc_event ev = grpc_completion_queue_next(cq_, deadline, nullptr);
if (ev.type != GRPC_QUEUE_TIMEOUT) {
gpr_log(GPR_ERROR, "unexpected event (expected nothing): %s",
grpc_event_string(&ev).c_str());
FailUnexpectedEvent(&ev);
}
}

Loading…
Cancel
Save