From 3874b5bf840368bfe16c02106c5ba6c3b7bc83c0 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 29 Nov 2015 00:01:16 -0600 Subject: [PATCH] Add semicolons. --- test/test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/test.js b/test/test.js index 46345a5fb..dfaa7f639 100644 --- a/test/test.js +++ b/test/test.js @@ -2125,9 +2125,9 @@ QUnit.test('should clamp positive numbers', function(assert) { 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(Infinity, -5, 5), 5) + assert.strictEqual(_.clamp(Infinity, -5, 5), 5); }); QUnit.test('should not alter negative numbers in range', function(assert) { @@ -19951,7 +19951,7 @@ func(Object(other)) ]; }) - ) + ); }); assert.deepEqual(actual, expected); @@ -20019,7 +20019,7 @@ func(mod(other)), func(Object(mod(other))) ]; - }) + }); }) ); }); @@ -20046,7 +20046,7 @@ func(mod(value)), func(Object(mod(value))) ]; - }) + }); }) ); });