Skip to content

Commit

Permalink
Increase timeout seconds in ConcurrencyHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
sjudd committed Aug 21, 2023
1 parent 9bfbf25 commit ed5b09a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
/** Helper for running sections of code on the main thread in emulator tests. */
public class ConcurrencyHelper {
private final Handler handler = new Handler(Looper.getMainLooper());
private static final long TIMEOUT_SECONDS = 10;
private static final long TIMEOUT_SECONDS = 20;
private static final TimeUnit TIMEOUT_UNIT = TimeUnit.SECONDS;

public <T> T get(final Future<T> future) {
Expand Down

0 comments on commit ed5b09a

Please sign in to comment.