Fix RequestContext held too long issue in EventBase
[folly.git] / folly / io / async / test / EventHandlerTest.cpp
index c40fb71d9cedb6dedd1c8b16ddd07f8629a6614d..feb2f77414bd0c4aab1620b430033f04c5cb0691 100644 (file)
@@ -47,7 +47,7 @@ void runInThreadsAndWait(vector<function<void()>> cbs) {
 }
 
 class EventHandlerMock : public EventHandler {
-public:
+ public:
   EventHandlerMock(EventBase* eb, int fd) : EventHandler(eb, fd) {}
   // gmock can't mock noexcept methods, so we need an intermediary
   MOCK_METHOD1(_handlerReady, void(uint16_t));
@@ -57,7 +57,7 @@ public:
 };
 
 class EventHandlerTest : public Test {
-public:
+ public:
   int efd = 0;
 
   void SetUp() override {