diff options
Diffstat (limited to 'testing/all_test_specs.go')
-rw-r--r-- | testing/all_test_specs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/all_test_specs.go b/testing/all_test_specs.go index b035435db..68f24d15c 100644 --- a/testing/all_test_specs.go +++ b/testing/all_test_specs.go @@ -21,7 +21,7 @@ func (this *allTestSpecsSingleton) GenerateBuildActions(ctx android.SingletonCon var intermediateMetadataPaths android.Paths ctx.VisitAllModules(func(module android.Module) { - if metadata, ok := android.SingletonModuleProvider(ctx, module, TestSpecProviderKey); ok { + if metadata, ok := android.OtherModuleProvider(ctx, module, TestSpecProviderKey); ok { intermediateMetadataPaths = append(intermediateMetadataPaths, metadata.IntermediatePath) } }) |