diff options
Diffstat (limited to 'cc/cc_test.go')
-rw-r--r-- | cc/cc_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/cc_test.go b/cc/cc_test.go index ce941d5d9..c16cce83c 100644 --- a/cc/cc_test.go +++ b/cc/cc_test.go @@ -250,8 +250,8 @@ func checkVndkModule(t *testing.T, ctx *android.TestContext, name, subDir string // Check VNDK extension properties. isVndkExt := extends != "" - if mod.isVndkExt() != isVndkExt { - t.Errorf("%q isVndkExt() must equal to %t", name, isVndkExt) + if mod.IsVndkExt() != isVndkExt { + t.Errorf("%q IsVndkExt() must equal to %t", name, isVndkExt) } if actualExtends := mod.getVndkExtendsModuleName(); actualExtends != extends { |