Use strictEqual rather than equal

This commit is contained in:
jaubourg
2012-11-27 02:38:20 +01:00
parent c4858c1b26
commit e679f6c2db

View File

@@ -1924,8 +1924,8 @@ module( "ajax", {
},
function( xml ) {
jQuery( "math", xml ).each(function() {
equal( jQuery( "calculation", this ).text(), "5-2", "Check for XML" );
equal( jQuery( "result", this ).text(), "3", "Check for XML" );
strictEqual( jQuery( "calculation", this ).text(), "5-2", "Check for XML" );
strictEqual( jQuery( "result", this ).text(), "3", "Check for XML" );
});
}
),