From 2f9a7c8ab0c2495d8c84c48e1838b2abbcbb2cbb Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Thu, 30 May 2019 11:16:26 -0700 Subject: [PATCH] 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 --- java/robolectric.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }