From 99a5fcc665f239331fa74877589db53bc093b5f7 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 21 Oct 2015 22:15:17 -0700 Subject: [PATCH] Fix typos in `_.clamp` test labels. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 87c701285..108d1f245 100644 --- a/test/test.js +++ b/test/test.js @@ -2031,7 +2031,7 @@ QUnit.module('lodash.clamp'); (function() { - QUnit.test('should limit negative numbers', function(assert) { + QUnit.test('should clamp negative numbers', function(assert) { assert.expect(3); assert.strictEqual(_.clamp(-10, -5, 5), -5); @@ -2039,7 +2039,7 @@ assert.strictEqual(_.clamp(-Infinity, -5, 5), -5); }); - QUnit.test('should limit posiive number', function(assert) { + QUnit.test('should clamp positive numbers', function(assert) { assert.expect(3); assert.strictEqual(_.clamp(10, -5, 5), 5)