apex: Remove apexPackagingMutator
Bug: 279835185
Test: m
Change-Id: I2f5293a5a86d2ea66c1107659abc2e746fe2775e
diff --git a/apex/bp2build_test.go b/apex/bp2build_test.go
index b1b6a75..6bab67d 100644
--- a/apex/bp2build_test.go
+++ b/apex/bp2build_test.go
@@ -80,7 +80,7 @@
}),
).RunTestWithBp(t, bp)
- m := result.ModuleForTests("foo", "android_common_foo_image").Module()
+ m := result.ModuleForTests("foo", "android_common_foo").Module()
ab, ok := m.(*apexBundle)
if !ok {
@@ -206,7 +206,7 @@
}),
).RunTestWithBp(t, bp)
- m := result.ModuleForTests("foo", "android_common_foo_image").Module()
+ m := result.ModuleForTests("foo", "android_common_foo").Module()
ab, ok := m.(*apexBundle)
if !ok {
@@ -299,7 +299,7 @@
}),
).RunTestWithBp(t, bp)
- m := result.ModuleForTests("foo", "android_common_foo_image").Module()
+ m := result.ModuleForTests("foo", "android_common_foo").Module()
ab, ok := m.(*apexBundle)
if !ok {
t.Fatalf("Expected module to be an apexBundle, was not")
@@ -483,7 +483,7 @@
}),
).RunTest(t)
- m := result.ModuleForTests("foo", "android_common_override_foo_foo_image").Module()
+ m := result.ModuleForTests("foo", "android_common_override_foo_foo").Module()
ab, ok := m.(*apexBundle)
if !ok {
t.Fatalf("Expected module to be an apexBundle, was not")