Skip to content

Commit acb206a

Browse files
committed
Add test for td append
1 parent ecd1062 commit acb206a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/manipulation.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ var testAppendForObject = function( valueObj, isFragment ) {
395395

396396
var testAppend = function( valueObj ) {
397397

398-
expect( 67 );
398+
expect( 68 );
399399

400400
testAppendForObject( valueObj, false );
401401
testAppendForObject( valueObj, true );
@@ -460,7 +460,7 @@ var testAppend = function( valueObj ) {
460460

461461
$table = jQuery("#table");
462462

463-
jQuery.each( "thead tbody tfoot colgroup caption tr".split(" "), function( i, name ) {
463+
jQuery.each( "thead tbody tfoot colgroup caption tr td".split(" "), function( i, name ) {
464464
$table.append( valueObj( "<" + name + "/>" ) );
465465
equal( $table.find( name ).length, 1, "Append " + name );
466466
});

0 commit comments

Comments
 (0)