Skip to content

Commit b4c1739

Browse files
committed
Fixes broken assertions in about_asserts
1 parent f86640b commit b4c1739

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
@@ -2,11 +2,11 @@
22
module("About Asserts (topics/about_asserts.js)");
33

44
test("ok", function() {
5-
ok(__, 'what will satisfy the ok assertion?');
5+
ok(__ === true, 'what will satisfy the ok assertion?');
66
});
77

8-
test("not", function() {
9-
not(__, 'what is a false value?');
8+
test("not ok", function() {
9+
ok(__ === false, 'what is a false value?');
1010
});
1111

1212
test("equals", function() {

0 commit comments

Comments
 (0)