]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Exclude ro locale from weekday parsing safety checks
authorIskren Chernev <iskren.chernev@gmail.com>
Mon, 12 Sep 2016 06:52:25 +0000 (23:52 -0700)
committerIskren Chernev <iskren.chernev@gmail.com>
Mon, 12 Sep 2016 06:58:51 +0000 (23:58 -0700)
src/test/helpers/common-locale.js

index e33e85269e218e22df0df90ea57e08ee46e66451..6061732d495ae2edf653fbc66b305aa9aed2eaad 100644 (file)
@@ -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;
         }