commit | 2f9a7c8ab0c2495d8c84c48e1838b2abbcbb2cbb | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Thu May 30 11:16:26 2019 -0700 |
committer | Colin Cross <ccross@android.com> | Thu May 30 11:19:32 2019 -0700 |
tree | 2e9d1580a3f7265094d0ce0beb13eae13aa4e216 | |
parent | 7d06395f0c12ce8c265639106a5666ae04f1a447 [diff] [blame] |
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
diff --git a/java/robolectric.go b/java/robolectric.go index 26f1e9d..b87ee0d 100644 --- a/java/robolectric.go +++ b/java/robolectric.go
@@ -39,7 +39,7 @@ Test_options struct { // Timeout in seconds when running the tests. - Timeout *string + Timeout *int64 } }