Autocomplete Tests: Fix oldIE test failures by accounting for casing differences in .html() return values.

This commit is contained in:
Mike Sherov 2013-03-31 12:32:33 -04:00
parent e12879a441
commit 70717273a8

View File

@ -195,7 +195,7 @@ test( ".replaceWith() (#9172)", function() {
replacement = "<div>test</div>",
parent = element.parent();
element.replaceWith( replacement );
equal( parent.html(), replacement );
equal( parent.html().toLowerCase(), replacement );
});
}( jQuery ) );