remove unused helper function

This commit is contained in:
Hans-Christoph Steiner 2020-10-14 18:39:51 +02:00
parent 08931f4524
commit 501a33f117
1 changed files with 0 additions and 7 deletions

View File

@ -43,13 +43,6 @@ class BuildTest(unittest.TestCase):
print('no build-tools found: ' + build_tools)
return False
def _find_all(self):
for cmd in ('aapt', 'adb', 'android', 'zipalign'):
path = fdroidserver.common.find_sdk_tools_cmd(cmd)
if path is not None:
self.assertTrue(os.path.exists(path))
self.assertTrue(os.path.isfile(path))
def setUp(self):
logging.basicConfig(level=logging.DEBUG)
self.basedir = os.path.join(localmodule, 'tests')