| Index: build/android/pylib/gtest/test_package.py
|
| diff --git a/build/android/pylib/gtest/test_package.py b/build/android/pylib/gtest/test_package.py
|
| index f82d029758accac420649ea1a4571284cf6eb55c..ce07f4fb97101038837ca95d551310a064d0ec55 100644
|
| --- a/build/android/pylib/gtest/test_package.py
|
| +++ b/build/android/pylib/gtest/test_package.py
|
| @@ -3,7 +3,8 @@
|
| # found in the LICENSE file.
|
|
|
| """Base class representing GTest test packages."""
|
| -# pylint: disable=R0201
|
| +
|
| +import logging
|
|
|
|
|
| class TestPackage(object):
|
| @@ -42,7 +43,7 @@ class TestPackage(object):
|
| """
|
| raise NotImplementedError('Method must be overriden.')
|
|
|
| - def GetGTestReturnCode(self, _adb):
|
| + def GetGTestReturnCode(self, adb):
|
| return None
|
|
|
| def SpawnTestProcess(self, adb):
|
| @@ -64,8 +65,7 @@ class TestPackage(object):
|
| """
|
| raise NotImplementedError('Method must be overriden.')
|
|
|
| - @staticmethod
|
| - def _ParseGTestListTests(raw_list):
|
| + def _ParseGTestListTests(self, raw_list):
|
| """Parses a raw test list as provided by --gtest_list_tests.
|
|
|
| Args:
|
|
|