Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b631bf3 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix some python2/3 migration issues" am: ceb81e2b am: fa3f8bdd am:...

Merge "Fix some python2/3 migration issues" am: ceb81e2b am: fa3f8bdd am: 949f4fc6 am: 90c9ad6f

Original change: https://android-review.googlesource.com/c/platform/build/+/1930407

Change-Id: Ieb08fc938455e0a6f97e01bea9bae99ef7c34e8c
parents 42af7d75 90c9ad6f
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -198,8 +198,9 @@ class ApexUtilsTest(test_utils.ReleaseToolsTestCase):

    # pass `false` as a sign_tool to see the invocation error
    with self.assertRaises(common.ExternalError) as cm:
        signer = apex_utils.ApexApkSigner(apex_path, None, None, sign_tool='false')
      signer = apex_utils.ApexApkSigner(
          apex_path, None, None, sign_tool='false')
      signer.ProcessApexFile(apk_keys, self.payload_key)

    the_exception = cm.exception
    self.assertIn('Failed to run command \'[\'false\'', the_exception.message)
    self.assertIn('Failed to run command \'[\'false\'', str(the_exception))