Skip to content

Commit 791db78

Browse files
committed
MINIFICPP-1448 - Increase timeout (temporarily)
1 parent ebbf252 commit 791db78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/windows-event-log/tests/CWELCustomProviderTests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ class CustomProviderController : public OutputFormatTestController {
6868
REQUIRE(dispatchCustomEvent({L"Bookmark", L"Second", L"Third", 2, binary}));
6969
// even though we are using the API, we still have to wait for the event to appear
7070
// for CWEL processor
71-
std::this_thread::sleep_for(std::chrono::seconds{1});
71+
std::this_thread::sleep_for(std::chrono::seconds{2});
7272
}
7373
void dispatchCollectedEvent() override {
7474
auto binary = reinterpret_cast<const unsigned char*>("\x09\x01");
7575
REQUIRE(dispatchCustomEvent({L"Actual event", L"Second", L"Third", 2, binary}));
7676
// even though we are using the API, we still have to wait for the event to appear
7777
// for CWEL processor
78-
std::this_thread::sleep_for(std::chrono::seconds{1});
78+
std::this_thread::sleep_for(std::chrono::seconds{2});
7979
}
8080
};
8181

0 commit comments

Comments
 (0)