summaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-03-05 19:30:38 -0500
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-04-14 13:03:21 +0200
commit5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e (patch)
treef7714d8c4271197ce41822ec5576d560a94db13c /python
parent68e873ada7df399983072a1d67cf89f379fa0618 (diff)
downloadUXP-5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e.tar
UXP-5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e.tar.gz
UXP-5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e.tar.lz
UXP-5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e.tar.xz
UXP-5c7109182c5cbc6b3fa187b58ad9d1b5daeba23e.zip
Issue #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.py1
-rw-r--r--python/mozbuild/mozpack/test/test_packager_formats.py1
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'))