Make TearDown follow typical gtest fixture format

pull/4828/head
Vijay Pai 9 years ago
parent e3b03712fd
commit c7c5639d3e
  1. 2
      test/cpp/end2end/thread_stress_test.cc

@ -232,11 +232,11 @@ class AsyncClientEnd2endTest : public End2endTest {
AsyncClientEnd2endTest() : rpcs_outstanding_(0) {}
void TearDown() GRPC_OVERRIDE {
End2endTest::TearDown();
void* ignored_tag;
bool ignored_ok;
while (cq_.Next(&ignored_tag, &ignored_ok))
;
End2endTest::TearDown();
}
void Wait() {

Loading…
Cancel
Save