Merge "Remove special handling of test_ apexes"
diff --git a/apex/apex.go b/apex/apex.go
index 954c352..a4467f6 100644
--- a/apex/apex.go
+++ b/apex/apex.go
@@ -2395,8 +2395,6 @@
func whitelistedApexAvailable(apex, moduleName string) bool {
key := apex
- key = strings.Replace(key, "test_", "", 1)
-
// Prebuilt modules (e.g. java_import, etc.) have "prebuilt_" prefix added by the build
// system. Trim the prefix for the check since they are confusing
moduleName = strings.TrimPrefix(moduleName, "prebuilt_")