From e679f6c2db76bea42ab84a2c6c16b1e9f5cffd19 Mon Sep 17 00:00:00 2001 From: jaubourg Date: Tue, 27 Nov 2012 02:38:20 +0100 Subject: [PATCH] Use strictEqual rather than equal --- test/unit/ajax.js | 4 ++-- 1 file 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" ); }); } ), -- 2.39.5