diff options
author | 2021-03-20 00:36:14 +0000 | |
---|---|---|
committer | 2021-03-22 18:31:53 +0000 | |
commit | 30ac3e7ca75106d7f883558c46501296d4bffcfc (patch) | |
tree | 8fb0fadf5f85ff592c7ff56bdfb0a915d9ffa1b1 /android/path_properties_test.go | |
parent | ff2aa69a86e46429255ed812b2796a89635b9f26 (diff) |
Remove uses of FixtureFactory from android package
Bug: 183235980
Test: m nothing
Change-Id: I72898ada020ee1a73fd534c61afb5c22fa00c1e5
Diffstat (limited to 'android/path_properties_test.go')
-rw-r--r-- | android/path_properties_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/path_properties_test.go b/android/path_properties_test.go index 8726ea77f..568f8682b 100644 --- a/android/path_properties_test.go +++ b/android/path_properties_test.go @@ -157,14 +157,14 @@ func TestPathDepsMutator(t *testing.T) { } ` - result := emptyTestFixtureFactory.RunTest(t, + result := GroupFixturePreparers( PrepareForTestWithArchMutator, PrepareForTestWithFilegroup, FixtureRegisterWithContext(func(ctx RegistrationContext) { ctx.RegisterModuleType("test", pathDepsMutatorTestModuleFactory) }), FixtureWithRootAndroidBp(bp), - ) + ).RunTest(t) m := result.Module("foo", "android_arm64_armv8-a").(*pathDepsMutatorTestModule) |