diff options
author | Paul Duffin <paulduffin@google.com> | 2021-03-22 15:36:52 +0000 |
---|---|---|
committer | Paul Duffin <paulduffin@google.com> | 2021-03-24 01:07:12 +0000 |
commit | 71ae59412b6667210e11d3fb21971153ecbf3183 (patch) | |
tree | 0080bb5bfbba01f12ee4d65780656eb77a0463d9 /java/hiddenapi_singleton_test.go | |
parent | d6339af0b6220586edc92872e1d93fa0a7e9c3da (diff) |
Remove javaFixtureFactory
Replaces uses of javaFixtureFactory with prepareForJavaTest and removes
the unused javaFixtureFactory.
Bug: 182885307
Test: m nothing
Change-Id: I809772d14af2af211b9e15ad676fbdc06b07cd46
Diffstat (limited to 'java/hiddenapi_singleton_test.go')
-rw-r--r-- | java/hiddenapi_singleton_test.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/hiddenapi_singleton_test.go b/java/hiddenapi_singleton_test.go index 12a85d59e..d6c6a2ddc 100644 --- a/java/hiddenapi_singleton_test.go +++ b/java/hiddenapi_singleton_test.go @@ -35,7 +35,8 @@ func fixtureSetPrebuiltHiddenApiDirProductVariable(prebuiltHiddenApiDir *string) }) } -var hiddenApiFixtureFactory = javaFixtureFactory.Extend(PrepareForTestWithHiddenApiBuildComponents) +var hiddenApiFixtureFactory = android.GroupFixturePreparers( + prepareForJavaTest, PrepareForTestWithHiddenApiBuildComponents) func TestHiddenAPISingleton(t *testing.T) { result := hiddenApiFixtureFactory.Extend( |