aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorrwldrn <waldron.rick@gmail.com>2011-01-22 00:41:42 +0100
committerAnton M <obhvsbypqghgc@gmail.com>2011-01-22 00:41:42 +0100
commitf1bd0cfc4d3eabf566b6a3345d888e6db67bc00b (patch)
tree007cf7f160fc281e9ceab71884a644e93c380e91 /test
parent1922f311a321620f9df609503f49f41a53671ea4 (diff)
downloadjquery-f1bd0cfc4d3eabf566b6a3345d888e6db67bc00b.tar.gz
jquery-f1bd0cfc4d3eabf566b6a3345d888e6db67bc00b.zip
Merge branch '8017lint' of https://github.com/rwldrn/jquery into 8017lint
Diffstat (limited to 'test')
-rw-r--r--test/unit/manipulation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index a68c214ba..739868bd7 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -880,7 +880,7 @@ test("jQuery.clone() (#8017)", function() {
var main = jQuery("#main")[0],
clone = jQuery.clone( main );
- equals( main.children.length, clone.children.length, "Simple child length to ensure a large dom tree copies correctly" );
+ equals( main.childNodes.length, clone.childNodes.length, "Simple child length to ensure a large dom tree copies correctly" );
});
test("clone()", function() {