diff options
author | rwldrn <waldron.rick@gmail.com> | 2011-01-22 00:41:42 +0100 |
---|---|---|
committer | Anton M <obhvsbypqghgc@gmail.com> | 2011-01-22 00:41:42 +0100 |
commit | f1bd0cfc4d3eabf566b6a3345d888e6db67bc00b (patch) | |
tree | 007cf7f160fc281e9ceab71884a644e93c380e91 /test | |
parent | 1922f311a321620f9df609503f49f41a53671ea4 (diff) | |
download | jquery-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.js | 2 |
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() { |