Skip to content

Commit 1c23149

Browse files
committed
Made assert tests pass.
1 parent 0f3c498 commit 1c23149

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

topics/about_asserts.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ $(document).ready(function(){
44
module("About Asserts (topics/about_asserts.js)");
55

66
test("ok", function() {
7-
ok(false, 'what will satisfy the ok assertion?');
7+
ok(true, 'what will satisfy the ok assertion?');
88
});
99

1010
test("not", function() {
11-
not(__, 'what is a false value?');
11+
not(false, 'what is a false value?');
1212
});
1313

1414
test("equals", function() {
15-
equals(1+1, __, 'what will satisfy the equals assertion?');
15+
equals(1+1, 2, 'what will satisfy the equals assertion?');
1616
});
1717

1818
});

0 commit comments

Comments
 (0)