We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 088ea6a commit 8cbfb82Copy full SHA for 8cbfb82
topics/about_asserts.js
@@ -2,13 +2,13 @@
2
module("About Asserts (topics/about_asserts.js)");
3
4
test("ok", function() {
5
- ok(__ === true, 'what will satisfy the ok assertion?');
+ ok(true === true, 'what will satisfy the ok assertion?');
6
});
7
8
test("not ok", function() {
9
- ok(__ === false, 'what is a false value?');
+ ok(false === false, 'what is a false value?');
10
11
12
test("equal", function() {
13
- equal(__, 1 + 1, 'what will satisfy the equal assertion?');
+ equal(1+1, 1 + 1, 'what will satisfy the equal assertion?');
14
0 commit comments