diff options
| author | 2019-05-30 11:16:26 -0700 | |
|---|---|---|
| committer | 2019-05-30 11:19:32 -0700 | |
| commit | 2f9a7c8ab0c2495d8c84c48e1838b2abbcbb2cbb (patch) | |
| tree | 2e9d1580a3f7265094d0ce0beb13eae13aa4e216 /java | |
| parent | 7d06395f0c12ce8c265639106a5666ae04f1a447 (diff) | |
Make test_options.timeout an int64
I forgot we supported integer properties, use an integer instead
of a string for test_options.timeout.
Test: m checkbuild
Change-Id: I22d3135b31ec93d15b530c430b9e9cda6dd3f416
Diffstat (limited to 'java')
| -rw-r--r-- | java/robolectric.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/robolectric.go b/java/robolectric.go index 26f1e9d1d..b87ee0d6d 100644 --- a/java/robolectric.go +++ b/java/robolectric.go @@ -39,7 +39,7 @@ type robolectricProperties struct { Test_options struct { // Timeout in seconds when running the tests. - Timeout *string + Timeout *int64 } } |