]> source.dussan.org Git - jquery.git/commitdiff
Use strictEqual rather than equal
authorjaubourg <j@ubourg.net>
Tue, 27 Nov 2012 01:38:20 +0000 (02:38 +0100)
committerjaubourg <j@ubourg.net>
Tue, 27 Nov 2012 01:38:20 +0000 (02:38 +0100)
test/unit/ajax.js

index 4bb9c55d63b3e80cc19998e041b081e35901ae52..e6da0451973324d77063ec67d3f0c0b826220c57 100644 (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" );
                                        });
                                }
                        ),