aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjaubourg <j@ubourg.net>2012-11-27 02:38:20 +0100
committerjaubourg <j@ubourg.net>2012-11-27 02:38:20 +0100
commite679f6c2db76bea42ab84a2c6c16b1e9f5cffd19 (patch)
treee0f32276e778e286d6c2078e047d8b65ff7b826a
parentc4858c1b265d33e9b84fd6b0d95c592555a67865 (diff)
downloadjquery-e679f6c2db76bea42ab84a2c6c16b1e9f5cffd19.tar.gz
jquery-e679f6c2db76bea42ab84a2c6c16b1e9f5cffd19.zip
Use strictEqual rather than equal
-rw-r--r--test/unit/ajax.js4
1 files changed, 2 insertions, 2 deletions
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" );
});
}
),