summaryrefslogtreecommitdiff
path: root/scripts/manifest_fixer_test.py
diff options
context:
space:
mode:
author Sam Chiu <samchiu@google.com> 2024-05-08 06:49:33 +0000
committer Sam Chiu <samchiu@google.com> 2024-05-08 06:49:33 +0000
commita71b90cf810cfdd2bc74e7fcf7a2741fce14ff4f (patch)
tree84a118a270566f611aaad23b92f5b703ae94fe6e /scripts/manifest_fixer_test.py
parent4f63dc7904de8346a99dc8fbe8833ba851f1df31 (diff)
Revert "Always embed jni libs and store uncompressed"
Revert submission 3075263 Reason for revert: verifying the test failure b/339332424 Reverted changes: /q/submissionid:3075263 Change-Id: I0e1a526893ee6c591eaefadcee4bbbf321dfc1df
Diffstat (limited to 'scripts/manifest_fixer_test.py')
-rwxr-xr-xscripts/manifest_fixer_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/manifest_fixer_test.py b/scripts/manifest_fixer_test.py
index 9fce6b9b8..0a62b10a4 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('false')
- self.assertRaises(RuntimeError, self.run_test, manifest_input, True)
+ manifest_input = self.manifest_tmpl % self.extract_native_libs('true')
+ self.assertRaises(RuntimeError, self.run_test, manifest_input, False)
class AddNoCodeApplicationTest(unittest.TestCase):