summaryrefslogtreecommitdiff
path: root/scripts/manifest_fixer_test.py
diff options
context:
space:
mode:
author Jiyong Park <jiyong@google.com> 2024-05-08 09:54:22 +0000
committer Jiyong Park <jiyong@google.com> 2024-05-10 06:12:54 +0900
commit20df11ef2b7a9bd5fd1c62eee5f7dffb9d560df4 (patch)
tree5b382c960bbd080184fb751f85b1af42aed128c3 /scripts/manifest_fixer_test.py
parentcfac8c1bc8f12abfb7bb83d05f5fa64d0b75c120 (diff)
Revert^2 "Always embed jni libs and store uncompressed"
a71b90cf810cfdd2bc74e7fcf7a2741fce14ff4f Change-Id: I1c071c5449fa04adb14d17774f882e6adbff196b
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 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):