summaryrefslogtreecommitdiff
path: root/java/test_spec_test.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2023-12-14 14:46:23 -0800
committer Colin Cross <ccross@android.com> 2023-12-14 16:12:22 -0800
commit5a37718c956b1bfbda5e236c0fe50f08661a81de (patch)
treef8a6bddfb1fc02a663884ec9d500a831607572be /java/test_spec_test.go
parent313aa5475f50024da74e709a55f840eb7b263153 (diff)
Convert ModuleProvder to generic providers API
Convert all of the callers of ModuleProvider/ModuleHasProvider to use the type-safe android.SingletonModuleProvider API. Bug: 316410648 Test: builds Change-Id: I6f11638546b64749e451cebbf33140248dc1d193
Diffstat (limited to 'java/test_spec_test.go')
-rw-r--r--java/test_spec_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/java/test_spec_test.go b/java/test_spec_test.go
index 1409b28ae..f628b4b74 100644
--- a/java/test_spec_test.go
+++ b/java/test_spec_test.go
@@ -34,9 +34,7 @@ func TestTestSpec(t *testing.T) {
).Module().(*soongTesting.TestSpecModule)
// Check that the provider has the right contents
- data := result.ModuleProvider(
- module, soongTesting.TestSpecProviderKey,
- ).(soongTesting.TestSpecProviderData)
+ data, _ := android.SingletonModuleProvider(result, module, soongTesting.TestSpecProviderKey)
if !strings.HasSuffix(
data.IntermediatePath.String(), "/intermediateTestSpecMetadata.pb",
) {