diff options
author | 2021-11-03 16:53:31 +0000 | |
---|---|---|
committer | 2021-11-03 16:58:29 +0000 | |
commit | 10fb76f4678e9070dc15c26b449db79d49878a8a (patch) | |
tree | 92fc42a31a0aab9cabfe9d5d033e97499a0db496 /java/sdk_test.go | |
parent | a3bd96398837b2e758ca8f9cf3c7e5cc6338c8a9 (diff) |
Rename core-current-stubs-system-modules to be more consistent
Renames to core-public-stubs-system-modules so that it is of the format
core-<sdk-kind>-stubs-system-modules.
Bug: 204189791
Test: m nothing
Change-Id: Iac565c940c2ef92be9cc64c0c6b8102a26afe0dd
Diffstat (limited to 'java/sdk_test.go')
-rw-r--r-- | java/sdk_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/sdk_test.go b/java/sdk_test.go index 5c4a6d244..9e8ba6ed0 100644 --- a/java/sdk_test.go +++ b/java/sdk_test.go @@ -106,7 +106,7 @@ func TestClasspath(t *testing.T) { name: "current", properties: `sdk_version: "current",`, bootclasspath: []string{"android_stubs_current", "core-lambda-stubs"}, - system: "core-current-stubs-system-modules", + system: "core-public-stubs-system-modules", java9classpath: []string{"android_stubs_current"}, aidl: "-pout/soong/framework.aidl", }, @@ -129,7 +129,7 @@ func TestClasspath(t *testing.T) { name: "system_current", properties: `sdk_version: "system_current",`, bootclasspath: []string{"android_system_stubs_current", "core-lambda-stubs"}, - system: "core-current-stubs-system-modules", + system: "core-public-stubs-system-modules", java9classpath: []string{"android_system_stubs_current"}, aidl: "-pout/soong/framework.aidl", }, @@ -169,7 +169,7 @@ func TestClasspath(t *testing.T) { name: "test_current", properties: `sdk_version: "test_current",`, bootclasspath: []string{"android_test_stubs_current", "core-lambda-stubs"}, - system: "core-current-stubs-system-modules", + system: "core-public-stubs-system-modules", java9classpath: []string{"android_test_stubs_current"}, aidl: "-pout/soong/framework.aidl", }, @@ -201,7 +201,7 @@ func TestClasspath(t *testing.T) { name: "core_current", properties: `sdk_version: "core_current",`, bootclasspath: []string{"core.current.stubs", "core-lambda-stubs"}, - system: "core-current-stubs-system-modules", + system: "core-public-stubs-system-modules", }, { // Test case only applies when Always_use_prebuilt_sdks=true. |