diff options
author | 2021-03-13 10:18:26 +0000 | |
---|---|---|
committer | 2021-03-18 08:02:38 +0000 | |
commit | 171de3ef7c891d542b907a9257252164de0dc989 (patch) | |
tree | 5371a020ed4ab5c4f388d604c803f6a2854e05f4 /java/sdk_test.go | |
parent | 76101fa5ece8e74a3b5a409185af00c9fa25c4d6 (diff) |
Fix TestClasspath to work without javaMockFS()
Bug: 182638834
Test: m nothing
Change-Id: Icd6fe93cbda418cb4eaf5e99800894d4c4cc5e6f
Diffstat (limited to 'java/sdk_test.go')
-rw-r--r-- | java/sdk_test.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/java/sdk_test.go b/java/sdk_test.go index 50755cf89..37875a43b 100644 --- a/java/sdk_test.go +++ b/java/sdk_test.go @@ -353,6 +353,11 @@ func TestClasspath(t *testing.T) { } fixtureFactory := javaFixtureFactory.Extend( + FixtureWithPrebuiltApis(map[string][]string{ + "29": {}, + "30": {}, + "current": {}, + }), android.FixtureModifyProductVariables(func(variables android.FixtureProductVariables) { if testcase.unbundled { variables.Unbundled_build = proptools.BoolPtr(true) |