From 4cfd4019ed550689b854b3e406ec6bd38b8579fb Mon Sep 17 00:00:00 2001 From: Kunal Marwaha Date: Sun, 17 May 2020 04:18:04 -0700 Subject: [PATCH] Run prettier fmt --- src/test/helpers/common-locale.js | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) 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(), -- 2.47.2