author | Wes Kocher <wkocher@mozilla.com> |
Wed, 15 Feb 2017 14:55:15 -0800 | |
changeset 345657 | f7fe1818b01efa2430c2edcaedd427fa820d97b8 |
parent 345656 | 9fbb6524544f306147501fb9e6f6379db3bd69df |
child 345658 | 8d7b7fa773651086f40f2863124a0b9980af4d4e |
push id | 31443 |
push user | cbook@mozilla.com |
push date | Fri, 03 Mar 2017 12:01:25 +0000 |
treeherder | mozilla-central@31c09bb63b69 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1339892 |
milestone | 54.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/toolkit/components/mozintl/test/test_mozintl.js +++ b/toolkit/components/mozintl/test/test_mozintl.js @@ -14,14 +14,14 @@ function run_test() { function test_methods_presence(mozIntl) { equal(mozIntl.getCalendarInfo instanceof Function, true); equal(mozIntl.getDisplayNames instanceof Function, true); equal(mozIntl.getLocaleInfo instanceof Function, true); equal(mozIntl.createPluralRules instanceof Function, true); } function test_methods_calling(mozIntl) { - let ci = mozIntl.getCalendarInfo('pl'); - let dn = mozIntl.getDisplayNames('ar'); - let li = mozIntl.getLocaleInfo('de'); - let pr = mozIntl.createPluralRules('fr'); + mozIntl.getCalendarInfo("pl"); + mozIntl.getDisplayNames("ar"); + mozIntl.getLocaleInfo("de"); + mozIntl.createPluralRules("fr"); ok(true); }