Skip to content

Commit

Permalink
Increase test timeout for slow devices
Browse files Browse the repository at this point in the history
OEMs have found some configurations of Android devices that cannot
meet the timeout. This change doubles the timeout from 30 to 60
seconds.

The Android bug reference is 27273056.
  • Loading branch information
nfuller committed Feb 29, 2016
1 parent b27c592 commit 45e44a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

public final class DiskLruCacheTest {
@Rule public final TemporaryFolder tempDir = new TemporaryFolder();
@Rule public final Timeout timeout = new Timeout(30 * 1000);
@Rule public final Timeout timeout = new Timeout(60 * 1000);

private final FaultyFileSystem fileSystem = new FaultyFileSystem(FileSystem.SYSTEM);
private final int appVersion = 100;
Expand Down

0 comments on commit 45e44a3

Please sign in to comment.