Merge "Fix syntax error for SignApexFile"

This commit is contained in:
Treehugger Robot
2019-12-04 21:03:02 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ logger = logging.getLogger(__name__)
def SignApexFile(avbtool, apex_file, payload_key, container_key, def SignApexFile(avbtool, apex_file, payload_key, container_key,
signing_args=None): no_hashtree, signing_args=None):
"""Signs the given apex file.""" """Signs the given apex file."""
with open(apex_file, 'rb') as input_fp: with open(apex_file, 'rb') as input_fp:
apex_data = input_fp.read() apex_data = input_fp.read()
@@ -56,7 +56,7 @@ def SignApexFile(avbtool, apex_file, payload_key, container_key,
container_key=container_key, container_key=container_key,
container_pw=None, container_pw=None,
codename_to_api_level_map=None, codename_to_api_level_map=None,
no_hashtree=False, no_hashtree=no_hashtree,
signing_args=signing_args) signing_args=signing_args)

View File

@@ -38,5 +38,6 @@ class SignApexTest(test_utils.ReleaseToolsTestCase):
'avbtool', 'avbtool',
foo_apex, foo_apex,
payload_key, payload_key,
container_key) container_key,
False)
self.assertTrue(os.path.exists(signed_foo_apex)) self.assertTrue(os.path.exists(signed_foo_apex))