Skip to content

Commit e679f6c

Browse files
committed
Use strictEqual rather than equal
1 parent c4858c1 commit e679f6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/ajax.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1924,8 +1924,8 @@ module( "ajax", {
19241924
},
19251925
function( xml ) {
19261926
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" );
1927+
strictEqual( jQuery( "calculation", this ).text(), "5-2", "Check for XML" );
1928+
strictEqual( jQuery( "result", this ).text(), "3", "Check for XML" );
19291929
});
19301930
}
19311931
),

0 commit comments

Comments
 (0)