diff options
author | 2021-05-20 09:59:59 +0000 | |
---|---|---|
committer | 2021-05-20 09:59:59 +0000 | |
commit | 6fae608181e67f47a3b556850af9bd0c38b7079e (patch) | |
tree | d29510595fb3ae961d8d4d0a3a09aa346f121ee8 /java/testing.go | |
parent | d685b7dcca398473db57fc1c4b1a6528e283ed1d (diff) | |
parent | 78349b56a06c9578a2da427bc5c4986020c0cc57 (diff) |
Merge changes I4e7a7ac5,I0c73361b
* changes:
Record the actual APEXes that a module is part of.
Rename InApexes -> InApexVariants
Diffstat (limited to 'java/testing.go')
-rw-r--r-- | java/testing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/testing.go b/java/testing.go index 51a1c621d..1fef337cc 100644 --- a/java/testing.go +++ b/java/testing.go @@ -378,7 +378,7 @@ func apexNamePairFromModule(ctx *android.TestContext, module android.Module) str if apexInfo.IsForPlatform() { apex = "platform" } else { - apex = apexInfo.InApexes[0] + apex = apexInfo.InApexVariants[0] } return fmt.Sprintf("%s:%s", apex, name) |