Fix typo in pad test label.

This commit is contained in:
John-David Dalton
2016-03-27 12:31:14 -07:00
parent 60e557b059
commit b1d7450052

View File

@@ -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');