diff options
author | Matt A. Tobin <email@mattatobin.com> | 2020-03-05 19:30:38 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2020-03-05 19:30:38 -0500 |
commit | bd5a44a4365bf6806b769cda9ee00e28eda3f086 (patch) | |
tree | e29f0fb4ec055595f79ce40cb5a8e01987ce047d /python | |
parent | 37857add303d071bf5c8155679e2a72913447677 (diff) | |
download | aura-central-bd5a44a4365bf6806b769cda9ee00e28eda3f086.tar.gz |
Issue mcp-graveyard/UXP%1470 - Part 3: Remove now unused update.locale
This requires changes to package-manifest in all applications
Diffstat (limited to 'python')
-rw-r--r-- | python/mozbuild/mozpack/packager/formats.py | 1 | ||||
-rw-r--r-- | python/mozbuild/mozpack/test/test_packager_formats.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/python/mozbuild/mozpack/packager/formats.py b/python/mozbuild/mozpack/packager/formats.py index cedd1998b..235fc3e90 100644 --- a/python/mozbuild/mozpack/packager/formats.py +++ b/python/mozbuild/mozpack/packager/formats.py @@ -320,5 +320,4 @@ class OmniJarSubFormatter(PiecemealFormatter): 'modules', 'goanna.js', 'hyphenation', - 'update.locale', ] or path[0] in STARTUP_CACHE_PATHS diff --git a/python/mozbuild/mozpack/test/test_packager_formats.py b/python/mozbuild/mozpack/test/test_packager_formats.py index 66a7cc8e6..4ba61e880 100644 --- a/python/mozbuild/mozpack/test/test_packager_formats.py +++ b/python/mozbuild/mozpack/test/test_packager_formats.py @@ -407,7 +407,6 @@ class TestFormatters(unittest.TestCase): self.assertTrue(is_resource(base, 'modules/foo.jsm')) self.assertTrue(is_resource(base, 'goanna.js')) self.assertTrue(is_resource(base, 'hyphenation/foo')) - self.assertTrue(is_resource(base, 'update.locale')) self.assertTrue( is_resource(base, 'jsloader/resource/gre/modules/foo.jsm')) self.assertFalse(is_resource(base, 'foo')) |