From: TGJG-XPS\TracyG Date: Mon, 6 Mar 2017 20:12:03 +0000 (+0000) Subject: Missing semi-colons added. X-Git-Tag: 2.18.0~12^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b020932d1fb4dd39262bdd6787e4bba851cdffec;p=thirdparty%2Fmoment.git Missing semi-colons added. --- diff --git a/src/test/moment/create.js b/src/test/moment/create.js index 2678cb6ba..43376f1bd 100644 --- a/src/test/moment/create.js +++ b/src/test/moment/create.js @@ -469,7 +469,7 @@ test('parsing RFC 2822', function (assert) { var testCase; for (testCase in testCases) { - var testResult = moment(testCases[testCase], moment.RFC_2822, true) + var testResult = moment(testCases[testCase], moment.RFC_2822, true); assert.ok(testResult.isValid(), testResult); } }); @@ -482,7 +482,7 @@ test('non RFC 2822 strings', function (assert) { var testCase; for (testCase in testCases) { - var testResult = moment(testCases[testCase], moment.RFC_2822, true) + var testResult = moment(testCases[testCase], moment.RFC_2822, true); assert.ok(!testResult.isValid(), testResult); } });