diff options
author | 2024-10-11 19:43:20 +0000 | |
---|---|---|
committer | 2024-10-11 19:43:20 +0000 | |
commit | 0c01454656d28d34b9b24b0e647c4fc03356ca66 (patch) | |
tree | cd1527283589beaa7d969303cb62ae5270560961 | |
parent | 9fe5f80e57c05ae97af57b8a451af012009b30f2 (diff) | |
parent | c08e4710aa027e31243ed6dcf539d50b71b3ea7d (diff) |
Merge "Fix binderLibTest flakiness" into main
-rw-r--r-- | libs/binder/tests/binderLibTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/tests/binderLibTest.cpp b/libs/binder/tests/binderLibTest.cpp index bcab6decca..ec2f50ca16 100644 --- a/libs/binder/tests/binderLibTest.cpp +++ b/libs/binder/tests/binderLibTest.cpp @@ -2261,7 +2261,7 @@ public: if (ret != NO_ERROR) { return ret; } - auto event = frozenStateChangeCallback->events.popWithTimeout(10ms); + auto event = frozenStateChangeCallback->events.popWithTimeout(1000ms); if (!event.has_value()) { return NOT_ENOUGH_DATA; } |