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