Merge "Increase parsing comparison test timeouts"

This commit is contained in:
TreeHugger Robot
2020-08-11 15:30:36 +00:00
committed by Android (Google) Code Review

View File

@@ -23,6 +23,8 @@ import com.google.common.truth.Expect
import org.junit.Rule
import org.junit.Test
import org.junit.rules.Timeout
import java.util.concurrent.TimeUnit
/**
* Collects APKs from the device and verifies that the new parsing behavior outputs
@@ -31,6 +33,9 @@ import org.junit.Test
@Presubmit
class AndroidPackageParsingEquivalenceTest : AndroidPackageParsingTestBase() {
@get:Rule
val timeout = Timeout(4, TimeUnit.MINUTES)
@get:Rule
val expect = Expect.create()