From a891df374c39c6b1fefbefef605d4e2eb2d914db Mon Sep 17 00:00:00 2001 From: lunsee Date: Thu, 19 Jun 2014 16:54:25 -0400 Subject: [PATCH] first one -- YAY --- topics/about_asserts.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topics/about_asserts.js b/topics/about_asserts.js index baf7fc75..a2146770 100644 --- a/topics/about_asserts.js +++ b/topics/about_asserts.js @@ -2,13 +2,13 @@ module("About Asserts (topics/about_asserts.js)"); test("ok", function() { - ok(__ === true, 'what will satisfy the ok assertion?'); + ok(true === true, 'what will satisfy the ok assertion?'); }); test("not ok", function() { - ok(__ === false, 'what is a false value?'); + ok(false === false, 'what is a false value?'); }); test("equal", function() { - equal(__, 1 + 1, 'what will satisfy the equal assertion?'); + equal(2, 1 + 1, 'what will satisfy the equal assertion?'); });