Merge "Dispose input monitor on the main thread in InputConsumerUtilsTest" into main

This commit is contained in:
Treehugger Robot
2025-04-15 10:19:06 -07:00
committed by Android (Google) Code Review
@@ -201,8 +201,10 @@ public class InputConsumerUtilsTest {
@After
public void cleanUp() {
mInputMonitorCompat.dispose();
mInputEventReceiver.dispose();
runOnMainSync(() -> {
mInputMonitorCompat.dispose();
mInputEventReceiver.dispose();
});
}
@Test