diff options
| -rw-r--r-- | packages/SystemUI/tests/src/com/android/systemui/shared/plugins/PluginInstanceTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/PluginInstanceTest.java b/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/PluginInstanceTest.java index 5e57c832074e..bc50c25a77a0 100644 --- a/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/PluginInstanceTest.java +++ b/packages/SystemUI/tests/src/com/android/systemui/shared/plugins/PluginInstanceTest.java @@ -198,7 +198,7 @@ public class PluginInstanceTest extends SysuiTestCase { AtomicBoolean isBgThreadFailed = new AtomicBoolean(false); Thread bgThread = new Thread(() -> { assertTrue(getLock(unloadLock, 10)); - assertTrue(getLock(loadLock, 3000)); // Wait for the foreground thread + assertTrue(getLock(loadLock, 4000)); // Wait for the foreground thread assertNotNull(mPluginInstance.getPlugin()); // Attempt to delete the plugin, this should block until the load completes mPluginInstance.unloadPlugin(); |