diff options
author | Paul Duffin <paulduffin@google.com> | 2021-03-09 22:27:13 +0000 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2021-03-11 17:25:29 +0000 |
commit | 4a2a29ce6a6cf558292874ec9e8714df3918b25b (patch) | |
tree | c27b2e28c06268185d1100958ca0857b601af9c2 /sdk/java_sdk_test.go | |
parent | 37aad605075130a6c682a8a60eee31bd9c3d428d (diff) |
Support test fixtures in sdk package
Bug: 181070625
Test: m nothing
Change-Id: Ifc96992e54c1b1d89a82b88ab27e555ae267a51e
Diffstat (limited to 'sdk/java_sdk_test.go')
-rw-r--r-- | sdk/java_sdk_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sdk/java_sdk_test.go b/sdk/java_sdk_test.go index ef8e4a00d..40f276919 100644 --- a/sdk/java_sdk_test.go +++ b/sdk/java_sdk_test.go @@ -17,10 +17,11 @@ package sdk import ( "testing" + "android/soong/android" "android/soong/java" ) -func testSdkWithJava(t *testing.T, bp string) *testSdkResult { +func testSdkWithJava(t *testing.T, bp string) *android.TestResult { t.Helper() fs := map[string][]byte{ |