Skip to content

Commit 724e63a

Browse files
authored
Merge pull request #19649 from benlangmuir/more-time
Double the timeout in EditTest
2 parents 24dd963 + 8c94888 commit 724e63a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittests/SourceKit/SwiftLang/EditingTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ class EditTest : public ::testing::Test {
137137
}
138138

139139
bool waitForDocUpdate(bool reset = false) {
140-
std::chrono::seconds secondsToWait(10);
140+
std::chrono::seconds secondsToWait(20);
141141
std::unique_lock<std::mutex> lk(DocUpdState->Mtx);
142142
auto when = std::chrono::system_clock::now() + secondsToWait;
143143
auto result = !DocUpdState->CV.wait_until(

0 commit comments

Comments
 (0)