summaryrefslogtreecommitdiff
path: root/testing/all_test_specs.go
diff options
context:
space:
mode:
Diffstat (limited to 'testing/all_test_specs.go')
-rw-r--r--testing/all_test_specs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/all_test_specs.go b/testing/all_test_specs.go
index 2ecf15fa6..9d4645b37 100644
--- a/testing/all_test_specs.go
+++ b/testing/all_test_specs.go
@@ -21,10 +21,10 @@ func (this *allTestSpecsSingleton) GenerateBuildActions(ctx android.SingletonCon
var intermediateMetadataPaths android.Paths
ctx.VisitAllModules(func(module android.Module) {
- if !ctx.ModuleHasProvider(module, testSpecProviderKey) {
+ if !ctx.ModuleHasProvider(module, TestSpecProviderKey) {
return
}
- intermediateMetadataPaths = append(intermediateMetadataPaths, ctx.ModuleProvider(module, testSpecProviderKey).(testSpecProviderData).IntermediatePath)
+ intermediateMetadataPaths = append(intermediateMetadataPaths, ctx.ModuleProvider(module, TestSpecProviderKey).(TestSpecProviderData).IntermediatePath)
})
rspFile := android.PathForOutput(ctx, fileContainingFilePaths)