From f944254cb817b3c0b641033aa7b625939cc31dd8 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 2 Feb 2016 08:22:48 -0800 Subject: [PATCH] Cleanup `fp.curryN` test label. --- test/test-fp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test-fp.js b/test/test-fp.js index 81fd30033..dc6a6f3a6 100644 --- a/test/test-fp.js +++ b/test/test-fp.js @@ -595,7 +595,7 @@ _.each(['curryN', 'curryRightN'], function(methodName) { var func = fp[methodName]; - QUnit.test('`_.' + methodName + '` accept an `arity` param', function(assert) { + QUnit.test('`_.' + methodName + '` should accept an `arity` param', function(assert) { assert.expect(1); var actual = func(1, function(a, b) { return [a, b]; })('a');