From: Iskren Chernev Date: Mon, 12 Sep 2016 06:52:25 +0000 (-0700) Subject: Exclude ro locale from weekday parsing safety checks X-Git-Tag: 2.15.0~3^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c80a4df5d437e0aa6f7b83114596d460756f8c84;p=thirdparty%2Fmoment.git Exclude ro locale from weekday parsing safety checks --- diff --git a/src/test/helpers/common-locale.js b/src/test/helpers/common-locale.js index e33e85269..6061732d4 100644 --- a/src/test/helpers/common-locale.js +++ b/src/test/helpers/common-locale.js @@ -106,9 +106,10 @@ export function defineCommonLocaleTests(locale, options) { test('weekday parsing correctness', function (assert) { var i, m; - if (locale === 'tr' || locale === 'az') { - // There is a lower-case letter (ı), that converted to upper then - // lower changes to i + if (locale === 'tr' || locale === 'az' || locale === 'ro') { + // tr, az: There is a lower-case letter (ı), that converted to + // upper then lower changes to i + // ro: there is the letter ț which behaves weird under IE8 expect(0); return; }