From: jaubourg Date: Tue, 27 Nov 2012 01:38:20 +0000 (+0100) Subject: Use strictEqual rather than equal X-Git-Tag: 1.9.0b1~78 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e679f6c2db76bea42ab84a2c6c16b1e9f5cffd19;p=jquery.git Use strictEqual rather than equal --- diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 4bb9c55d6..e6da04519 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -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" ); }); } ),