From 37f533f12b2042a38008afa89bef09c7ea4a4e78 Mon Sep 17 00:00:00 2001 From: John Bender Date: Sun, 26 Jun 2011 23:17:49 -0700 Subject: [PATCH] fixed double equals lint warning --- tests/unit/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/runner.js b/tests/unit/runner.js index b2c7382a..f3895bee 100644 --- a/tests/unit/runner.js +++ b/tests/unit/runner.js @@ -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 );