summaryrefslogtreecommitdiff
path: root/testing/all_code_metadata.go
diff options
context:
space:
mode:
Diffstat (limited to 'testing/all_code_metadata.go')
-rw-r--r--testing/all_code_metadata.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/all_code_metadata.go b/testing/all_code_metadata.go
index 12aa7b51f..e89b28155 100644
--- a/testing/all_code_metadata.go
+++ b/testing/all_code_metadata.go
@@ -21,7 +21,7 @@ func (this *allCodeMetadataSingleton) GenerateBuildActions(ctx android.Singleton
ctx.VisitAllModules(
func(module android.Module) {
- if metadata, ok := android.SingletonModuleProvider(ctx, module, CodeMetadataProviderKey); ok {
+ if metadata, ok := android.OtherModuleProvider(ctx, module, CodeMetadataProviderKey); ok {
intermediateMetadataPaths = append(intermediateMetadataPaths, metadata.IntermediatePath)
}
},