fixed double equals lint warning

This commit is contained in:
John Bender 2011-06-26 23:17:49 -07:00
parent 97feeaffc0
commit 37f533f12b

View file

@ -33,7 +33,7 @@
// if we have a result check it, otherwise check back shortly
if( result ){
ok( result == "qunit-pass" );
ok( result === "qunit-pass" );
// prevent the next interval of the check function and the test timeout
clearTimeout( checkTimer );