From 9121b140098f7867ce8bab620beb22434433c717 Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 10 Jun 2015 08:17:39 -0700 Subject: [PATCH] Cleanup `_.mixin` test. --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 3109cbbce..a281cc43a 100644 --- a/test/test.js +++ b/test/test.js @@ -11171,11 +11171,11 @@ delete Wrapper.prototype.b; }); - test('should not assign inherited `source` properties', 1, function() { + test('should not assign inherited `source` methods', 1, function() { function Foo() {} Foo.prototype.a = _.noop; - deepEqual(_.mixin({}, new Foo, {}), {}); + deepEqual(_.mixin({}, new Foo), {}); }); test('should accept an `options` argument', 16, function() {