Skip to content

Commit e8f9d03

Browse files
Treehugger RobotGerrit Code Review
authored andcommitted
Merge "binderSafeInterfaceTest: another quick flake fix" into main
2 parents b53ef23 + b754f1c commit e8f9d03

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/binder/tests/binderSafeInterfaceTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ TEST_F(SafeInterfaceTest, TestCallMeBack) {
789789
std::optional<int32_t> waitForCallback() {
790790
std::unique_lock<decltype(mMutex)> lock(mMutex);
791791
bool success =
792-
mCondition.wait_for(lock, 100ms, [&]() { return static_cast<bool>(mValue); });
792+
mCondition.wait_for(lock, 1000ms, [&]() { return static_cast<bool>(mValue); });
793793
return success ? mValue : std::nullopt;
794794
}
795795

0 commit comments

Comments
 (0)