Skip to content

Commit

Permalink
Increase default timeouts in emulator tests.
Browse files Browse the repository at this point in the history
The GIF decoder seems to be sufficiently slow on
arm emulators that 5 seconds is insufficient.
  • Loading branch information
sjudd committed Dec 11, 2017
1 parent c809f7e commit 76c6af2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
public class ConcurrencyHelper {
private final Handler handler = new Handler(Looper.getMainLooper());
private static final long TIMEOUT_SECONDS = 5;
private static final long TIMEOUT_SECONDS = 10;
private static final TimeUnit TIMEOUT_UNIT = TimeUnit.SECONDS;

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

0 comments on commit 76c6af2

Please sign in to comment.