summaryrefslogtreecommitdiffstats
path: root/intl/locale/tests/unit/data/intl_on_workers_worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'intl/locale/tests/unit/data/intl_on_workers_worker.js')
-rw-r--r--intl/locale/tests/unit/data/intl_on_workers_worker.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/intl/locale/tests/unit/data/intl_on_workers_worker.js b/intl/locale/tests/unit/data/intl_on_workers_worker.js
index e6f01e71a8..9b47fdf181 100644
--- a/intl/locale/tests/unit/data/intl_on_workers_worker.js
+++ b/intl/locale/tests/unit/data/intl_on_workers_worker.js
@@ -1,6 +1,6 @@
/* eslint-env worker */
-self.onmessage = function (data) {
+self.onmessage = function () {
let myLocale = Intl.NumberFormat().resolvedOptions().locale;
self.postMessage(myLocale);
};