diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2016-04-01 15:20:50 -0700 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2016-04-01 15:20:50 -0700 |
commit | abcebb07983ae4b1824cb4481462cd4b234e149a (patch) | |
tree | ddb6c543d0c5a36532770aa64b937a35209bacb1 /test/cpp | |
parent | 00eef19acd8a6c3a8ae41929571c4cc040f73132 (diff) | |
parent | 1a2c5aa9efffe42d7b94c9578daca8c4c6a8beb8 (diff) |
Merge pull request #5419 from ctiller/cleaner-posix2
Move all event handling code behind one grand unified interface
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/end2end/async_end2end_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc index 38f1311eb7..7e4d6046d6 100644 --- a/test/cpp/end2end/async_end2end_test.cc +++ b/test/cpp/end2end/async_end2end_test.cc @@ -53,7 +53,7 @@ #include "test/cpp/util/string_ref_helper.h" #ifdef GPR_POSIX_SOCKET -#include "src/core/lib/iomgr/pollset_posix.h" +#include "src/core/lib/iomgr/ev_posix.h" #endif using grpc::testing::EchoRequest; |