From: Matt Johnson Date: Sun, 13 Mar 2016 19:17:29 +0000 (-0700) Subject: Remove duplicate unit test X-Git-Tag: 2.13.0~38^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bc4128873709c0175e72f13e7900f43683146fb3;p=thirdparty%2Fmoment.git Remove duplicate unit test This is already in common-locale.js and runs for all locales --- diff --git a/src/test/locale/pa-in.js b/src/test/locale/pa-in.js index 99bce6d35..074b7e2d1 100644 --- a/src/test/locale/pa-in.js +++ b/src/test/locale/pa-in.js @@ -311,18 +311,6 @@ test('lenient ordinal parsing of number', function (assert) { } }); -test('meridiem', function (assert) { - var h, m, t1, t2; - for (h = 0; h < 24; ++h) { - for (m = 0; m < 60; m += 15) { - t1 = moment.utc([2000, 0, 1, h, m]); - t2 = moment(t1.format('A h:mm'), 'A h:mm'); - assert.equal(t2.format('HH:mm'), t1.format('HH:mm'), - 'meridiem at ' + t1.format('HH:mm')); - } - } -}); - test('strict ordinal parsing', function (assert) { var i, ordinalStr, testMoment; for (i = 1; i <= 31; ++i) {