From: Kunal Marwaha Date: Sun, 17 May 2020 11:18:04 +0000 (-0700) Subject: Run prettier fmt X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fka-tests;p=thirdparty%2Fmoment.git Run prettier fmt --- diff --git a/src/test/helpers/common-locale.js b/src/test/helpers/common-locale.js index aab29620d..4d21fc88d 100644 --- a/src/test/helpers/common-locale.js +++ b/src/test/helpers/common-locale.js @@ -111,7 +111,11 @@ export function defineCommonLocaleTests(locale, options) { r = moment(m.format(format), format); assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format); r = moment(m.format(format).toLocaleUpperCase(), format); - assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' upper'); + assert.equal( + r.month(), + m.month(), + 'month ' + i + ' fmt ' + format + ' upper' + ); r = moment(m.format(format).toLocaleLowerCase(), format); assert.equal( r.month(), @@ -120,9 +124,17 @@ export function defineCommonLocaleTests(locale, options) { ); r = moment(m.format(format), format, true); - assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' strict'); + assert.equal( + r.month(), + m.month(), + 'month ' + i + ' fmt ' + format + ' strict' + ); r = moment(m.format(format).toLocaleUpperCase(), format, true); - assert.equal(r.month(), m.month(), 'month ' + i + ' fmt ' + format + ' upper strict'); + assert.equal( + r.month(), + m.month(), + 'month ' + i + ' fmt ' + format + ' upper strict' + ); r = moment(m.format(format).toLocaleLowerCase(), format, true); assert.equal( r.month(),