From: Isaac Cambron Date: Thu, 24 Oct 2013 14:58:49 +0000 (-0400) Subject: adding missing semicolons X-Git-Tag: 2.4.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf816b389f6431331d095c4ab9c000e10c12a5a9;p=thirdparty%2Fmoment.git adding missing semicolons --- diff --git a/test/moment/create.js b/test/moment/create.js index 420c10ab4..86d6dd79f 100644 --- a/test/moment/create.js +++ b/test/moment/create.js @@ -277,8 +277,8 @@ exports.create = { test.equal(moment('12', 'SS').get('ms'), 120, 'centiseconds'); // test.equal(moment('123', 'SS', true).isValid(), false, 'centiseconds with three digits'); test.equal(moment('123', 'SSS').get('ms'), 123, 'milliseconds'); - test.equal(moment('1234', 'SSSS').get('ms'), 123, 'milliseconds with SSSS') - test.equal(moment('123456789101112', 'SSSS').get('ms'), 123, 'milliseconds with SSSS') + test.equal(moment('1234', 'SSSS').get('ms'), 123, 'milliseconds with SSSS'); + test.equal(moment('123456789101112', 'SSSS').get('ms'), 123, 'milliseconds with SSSS'); test.done(); },