diff options
author | 2024-05-08 01:28:45 +0000 | |
---|---|---|
committer | 2024-05-08 01:28:45 +0000 | |
commit | 14f7714fb475d9fdd3e381c5c390a49b509aaf52 (patch) | |
tree | d3aea2686be86329c11743361d29f6854fc3e640 /scripts/manifest_fixer_test.py | |
parent | 54fa3bbef521129598c26d2b882f3349fe815282 (diff) | |
parent | 4bc5231f6115c71aaa0aaaa3d575e5015f01bc5d (diff) |
Merge changes Ie866b192,I7df993ea into main
* changes:
Collect transitve deps of jni libs only for bundled apps
Always embed jni libs and store uncompressed
Diffstat (limited to 'scripts/manifest_fixer_test.py')
-rwxr-xr-x | scripts/manifest_fixer_test.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/manifest_fixer_test.py b/scripts/manifest_fixer_test.py index 0a62b10a4..9fce6b9b8 100755 --- a/scripts/manifest_fixer_test.py +++ b/scripts/manifest_fixer_test.py @@ -479,8 +479,8 @@ class AddExtractNativeLibsTest(unittest.TestCase): self.assert_xml_equal(output, expected) def test_conflict(self): - manifest_input = self.manifest_tmpl % self.extract_native_libs('true') - self.assertRaises(RuntimeError, self.run_test, manifest_input, False) + manifest_input = self.manifest_tmpl % self.extract_native_libs('false') + self.assertRaises(RuntimeError, self.run_test, manifest_input, True) class AddNoCodeApplicationTest(unittest.TestCase): |