diff options
author | 2024-12-18 17:08:07 -0800 | |
---|---|---|
committer | 2025-02-03 22:19:24 -0800 | |
commit | e5c7d7c59e63919e9b6ccd655c35fc5371a8bce9 (patch) | |
tree | 2c4013f5e3b6a9aab8824dd53fa3384d3f1fad55 /apex/classpath_element_test.go | |
parent | 09dbc010b0dd9055f919e639467691269fb15264 (diff) |
Use unique apex variations for bootclasspath fragments
Upcoming changes to the ApexInfo mutator will require unique apex
variations for the bootclasspath fragments, change them now to simplify
comparisons.
Test: go test ./...
Change-Id: Ia8880fe5ac22a7bd2fb9ddaeb3b04b9ae90b1701
Diffstat (limited to 'apex/classpath_element_test.go')
-rw-r--r-- | apex/classpath_element_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apex/classpath_element_test.go b/apex/classpath_element_test.go index f3671743a..55f1475f7 100644 --- a/apex/classpath_element_test.go +++ b/apex/classpath_element_test.go @@ -198,11 +198,11 @@ func TestCreateClasspathElements(t *testing.T) { result := preparer.RunTest(t) - artFragment := result.Module("art-bootclasspath-fragment", "android_common_apex10000") + artFragment := result.Module("art-bootclasspath-fragment", "android_common_com.android.art") artBaz := result.Module("baz", "android_common_apex10000") artQuuz := result.Module("quuz", "android_common_apex10000") - myFragment := result.Module("mybootclasspath-fragment", "android_common_apex10000") + myFragment := result.Module("mybootclasspath-fragment", "android_common_myapex") myBar := result.Module("bar", "android_common_apex10000") other := result.Module("othersdklibrary", "android_common_apex10000") |