diff options
Diffstat (limited to 'python/test.go')
-rw-r--r-- | python/test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/test.go b/python/test.go index 4df71c11b..b7cd4756a 100644 --- a/python/test.go +++ b/python/test.go @@ -108,12 +108,12 @@ func NewTest(hod android.HostOrDeviceSupported) *Module { func PythonTestHostFactory() android.Module { module := NewTest(android.HostSupportedNoCross) - return module.Init() + return module.init() } func PythonTestFactory() android.Module { module := NewTest(android.HostAndDeviceSupported) module.multilib = android.MultilibBoth - return module.Init() + return module.init() } |