diff options
Diffstat (limited to 'cc/cc_test.go')
-rw-r--r-- | cc/cc_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/cc_test.go b/cc/cc_test.go index 635e7d0af..064b1a25c 100644 --- a/cc/cc_test.go +++ b/cc/cc_test.go @@ -213,7 +213,7 @@ func checkVndkModule(t *testing.T, ctx *android.TestContext, name, subDir string t.Helper() mod := ctx.ModuleForTests(name, vendorVariant).Module().(*Module) - if !mod.hasVendorVariant() { + if !mod.HasVendorVariant() { t.Errorf("%q must have vendor variant", name) } @@ -230,8 +230,8 @@ func checkVndkModule(t *testing.T, ctx *android.TestContext, name, subDir string if mod.vndkdep == nil { t.Fatalf("%q must have `vndkdep`", name) } - if !mod.isVndk() { - t.Errorf("%q isVndk() must equal to true", name) + if !mod.IsVndk() { + t.Errorf("%q IsVndk() must equal to true", name) } if mod.isVndkSp() != isVndkSp { t.Errorf("%q isVndkSp() must equal to %t", name, isVndkSp) |