Merge "Fix some python2/3 migration issues"
This commit is contained in:
commit
ceb81e2bef
1 changed files with 4 additions and 3 deletions
|
@ -198,8 +198,9 @@ class ApexUtilsTest(test_utils.ReleaseToolsTestCase):
|
||||||
|
|
||||||
# pass `false` as a sign_tool to see the invocation error
|
# pass `false` as a sign_tool to see the invocation error
|
||||||
with self.assertRaises(common.ExternalError) as cm:
|
with self.assertRaises(common.ExternalError) as cm:
|
||||||
signer = apex_utils.ApexApkSigner(apex_path, None, None, sign_tool='false')
|
signer = apex_utils.ApexApkSigner(
|
||||||
signer.ProcessApexFile(apk_keys, self.payload_key)
|
apex_path, None, None, sign_tool='false')
|
||||||
|
signer.ProcessApexFile(apk_keys, self.payload_key)
|
||||||
|
|
||||||
the_exception = cm.exception
|
the_exception = cm.exception
|
||||||
self.assertIn('Failed to run command \'[\'false\'', the_exception.message)
|
self.assertIn('Failed to run command \'[\'false\'', str(the_exception))
|
||||||
|
|
Loading…
Reference in a new issue