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