diff options
author | 2019-05-28 16:26:05 +0000 | |
---|---|---|
committer | 2019-05-28 16:26:05 +0000 | |
commit | ff3f43857fce71fefac445dbf953386f1b7c8c03 (patch) | |
tree | 6bca2c1dde3d44178a793b5892961e7e1069ff34 /scripts/manifest_fixer_test.py | |
parent | 7101d4444274ada773c291426cbc20e9d5f8f169 (diff) | |
parent | 7211910fd0d158cd2a4e7d610f1e32b8c9d25817 (diff) |
Merge changes If15abf79,Iaae177ef
* changes:
Add manifest_check tool
Move manifest_fixer to a python_binary_host module
Diffstat (limited to 'scripts/manifest_fixer_test.py')
-rwxr-xr-x | scripts/manifest_fixer_test.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/manifest_fixer_test.py b/scripts/manifest_fixer_test.py index 7ec899994..20354218c 100755 --- a/scripts/manifest_fixer_test.py +++ b/scripts/manifest_fixer_test.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. # -"""Unit tests for manifest_fixer_test.py.""" +"""Unit tests for manifest_fixer.py.""" import StringIO import sys @@ -393,10 +393,10 @@ class AddExtractNativeLibsTest(unittest.TestCase): return output.getvalue() manifest_tmpl = ( - '<?xml version="1.0" encoding="utf-8"?>\n' - '<manifest xmlns:android="http://schemas.android.com/apk/res/android">\n' - ' <application%s/>\n' - '</manifest>\n') + '<?xml version="1.0" encoding="utf-8"?>\n' + '<manifest xmlns:android="http://schemas.android.com/apk/res/android">\n' + ' <application%s/>\n' + '</manifest>\n') def extract_native_libs(self, value): return ' android:extractNativeLibs="%s"' % value @@ -425,4 +425,4 @@ class AddExtractNativeLibsTest(unittest.TestCase): if __name__ == '__main__': - unittest.main() + unittest.main(verbosity=2) |