]> git.ipfire.org Git - thirdparty/moment.git/commitdiff
Missing semi-colons added.
authorTGJG-XPS\TracyG <tracyg.gilmore@gmail.com>
Mon, 6 Mar 2017 20:12:03 +0000 (20:12 +0000)
committerIskren Chernev <iskren.chernev@gmail.com>
Sun, 12 Mar 2017 00:11:46 +0000 (02:11 +0200)
src/test/moment/create.js

index 2678cb6bac8e7e1a66876bbd5a31e0eaa359d025..43376f1bd496c334e299fd256c5667506d402c9e 100644 (file)
@@ -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);
     }
 });