]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
adding missing semicolons
authorIsaac Cambron <isaac@isaaccambron.com>
Thu, 24 Oct 2013 14:58:49 +0000 (10:58 -0400)
committerIsaac Cambron <isaac@isaaccambron.com>
Thu, 24 Oct 2013 14:58:49 +0000 (10:58 -0400)
test/moment/create.js

index 420c10ab44246cb67a3e24551924f4161311a499..86d6dd79f2b40003abc69f13000d73eaa9ce95ed 100644 (file)
@@ -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();
     },