Remove extra return value from testApex

The config value returned by testApex is no longer used, remove it.

Test: go test  ./apex
Change-Id: I9327c1b139c17305454fb0a111e41456cdcaebc3
This commit is contained in:
Colin Cross
2021-02-16 17:55:47 -08:00
parent aa2555387d
commit 1c460567b6
3 changed files with 104 additions and 104 deletions

View File

@@ -28,7 +28,7 @@ import (
// modules from the ART apex.
func TestBootImages(t *testing.T) {
ctx, _ := testApex(t, `
ctx := testApex(t, `
java_sdk_library {
name: "foo",
srcs: ["b.java"],
@@ -180,7 +180,7 @@ func withFrameworkBootImageJars(bootJars ...string) func(fs map[string][]byte, c
}
func TestBootImageInApex(t *testing.T) {
ctx, _ := testApex(t, `
ctx := testApex(t, `
apex {
name: "myapex",
key: "myapex.key",