Skip to content

Commit 0f7f11e

Browse files
committed
implemented asserts
1 parent 278f777 commit 0f7f11e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

topics/about_asserts.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ test("ok", function() {
66
});
77

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

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

0 commit comments

Comments
 (0)