We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4858c1 commit e679f6cCopy full SHA for e679f6c
test/unit/ajax.js
@@ -1924,8 +1924,8 @@ module( "ajax", {
1924
},
1925
function( xml ) {
1926
jQuery( "math", xml ).each(function() {
1927
- equal( jQuery( "calculation", this ).text(), "5-2", "Check for XML" );
1928
- 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" );
1929
});
1930
}
1931
),
0 commit comments