From b1d7450052b00ea2bd39b9d71a3087868399845f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 27 Mar 2016 12:31:14 -0700 Subject: [PATCH] Fix typo in pad test label. --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index 5db55db14..0033b21fb 100644 --- a/test/test.js +++ b/test/test.js @@ -16318,7 +16318,7 @@ isPad = methodName == 'pad', isStart = methodName == 'padStart'; - QUnit.test('`_.' + methodName + '` should not pad is string is >= `length`', function(assert) { + QUnit.test('`_.' + methodName + '` should not pad if string is >= `length`', function(assert) { assert.expect(2); assert.strictEqual(func('abc', 2), 'abc');