From 4087dc5fe4d6fd944630503780b8fd05b2db7b15 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 13 Aug 2012 00:45:38 -0700 Subject: [PATCH] Reword unit jQuery/MooTools DOM query collection unit test. Former-commit-id: c80673f799ce6f1449d043eabf76fd6970a70b77 --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index 4013c777a..62dec50b6 100644 --- a/test/test.js +++ b/test/test.js @@ -713,7 +713,7 @@ equal(_.isEmpty({ 'length': 0 }), false); }); - test('should work with array-like collections', function() { + test('should work with jQuery/MooTools DOM query collections', function() { function Foo(elements) { Array.prototype.push.apply(this, elements); } Foo.prototype = { 'splice': Array.prototype.splice }; @@ -1091,7 +1091,7 @@ equal(_.size({ 'length': 3 }), 1); }); - test('should work with array-like collections', function() { + test('should work with jQuery/MooTools DOM query collections', function() { function Foo(elements) { Array.prototype.push.apply(this, elements); } Foo.prototype = { 'splice': Array.prototype.splice };