From e2c6f57859d1ec3b0ec78adf8a97efef1ac6f00b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 1 Jul 2014 11:58:09 -0700 Subject: [PATCH] Minor test cleanup. --- test/test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test.js b/test/test.js index 3d874b34b..e4bd77baf 100644 --- a/test/test.js +++ b/test/test.js @@ -2083,7 +2083,7 @@ strictEqual(new curried(true), object); }); - test('should not alter the `this` binding', 9, function() { + test('should not set a `this` binding', 9, function() { function fn(a, b, c) { var value = this || {}; return [value[a], value[b], value[c]]; @@ -2172,7 +2172,7 @@ strictEqual(new curried(true), object); }); - test('should not alter the `this` binding', 9, function() { + test('should not set a `this` binding', 9, function() { function fn(a, b, c) { var value = this || {}; return [value[a], value[b], value[c]]; @@ -7586,7 +7586,7 @@ } }); - test('`_.' + methodName + '` should not alter the `this` binding', 3, function() { + test('`_.' + methodName + '` should not set a `this` binding', 3, function() { var fn = function() { return this.a; }, object = { 'a': 1 };