Skip to content
Snippets Groups Projects
Commit c7c5639d authored by Vijay Pai's avatar Vijay Pai
Browse files

Make TearDown follow typical gtest fixture format

parent e3b03712
No related branches found
No related tags found
No related merge requests found
...@@ -232,11 +232,11 @@ class AsyncClientEnd2endTest : public End2endTest { ...@@ -232,11 +232,11 @@ class AsyncClientEnd2endTest : public End2endTest {
AsyncClientEnd2endTest() : rpcs_outstanding_(0) {} AsyncClientEnd2endTest() : rpcs_outstanding_(0) {}
void TearDown() GRPC_OVERRIDE { void TearDown() GRPC_OVERRIDE {
End2endTest::TearDown();
void* ignored_tag; void* ignored_tag;
bool ignored_ok; bool ignored_ok;
while (cq_.Next(&ignored_tag, &ignored_ok)) while (cq_.Next(&ignored_tag, &ignored_ok))
; ;
End2endTest::TearDown();
} }
void Wait() { void Wait() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment