Add semicolons.

This commit is contained in:
John-David Dalton
2015-11-29 00:01:16 -06:00
parent d07343a1aa
commit 3874b5bf84

View File

@@ -2125,9 +2125,9 @@
QUnit.test('should clamp positive numbers', function(assert) { QUnit.test('should clamp positive numbers', function(assert) {
assert.expect(3); assert.expect(3);
assert.strictEqual(_.clamp(10, -5, 5), 5) assert.strictEqual(_.clamp(10, -5, 5), 5);
assert.strictEqual(_.clamp(10.6, -5.6, 5.4), 5.4); assert.strictEqual(_.clamp(10.6, -5.6, 5.4), 5.4);
assert.strictEqual(_.clamp(Infinity, -5, 5), 5) assert.strictEqual(_.clamp(Infinity, -5, 5), 5);
}); });
QUnit.test('should not alter negative numbers in range', function(assert) { QUnit.test('should not alter negative numbers in range', function(assert) {
@@ -19951,7 +19951,7 @@
func(Object(other)) func(Object(other))
]; ];
}) })
) );
}); });
assert.deepEqual(actual, expected); assert.deepEqual(actual, expected);
@@ -20019,7 +20019,7 @@
func(mod(other)), func(mod(other)),
func(Object(mod(other))) func(Object(mod(other)))
]; ];
}) });
}) })
); );
}); });
@@ -20046,7 +20046,7 @@
func(mod(value)), func(mod(value)),
func(Object(mod(value))) func(Object(mod(value)))
]; ];
}) });
}) })
); );
}); });