Skip to content

Commit 177984b

Browse files
committed
switched file back to defaul state
1 parent 87b8d4e commit 177984b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

topics/about_control_structures.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ $(document).ready(function(){
88
if (2 > 0) {
99
isPositive = true;
1010
}
11-
equals(isPositive, true, 'what is the value of isPositive?');
11+
equals(isPositive, __, 'what is the value of isPositive?');
1212
});
1313

1414
test("for", function() {
1515
var counter = 10;
1616
for (var i = 1; i <= 3; i++) {
1717
counter = counter + i;
1818
}
19-
equals(counter, 16, 'what is the value of counter?');
19+
equals(counter, __, 'what is the value of counter?');
2020
});
2121

2222
test("for in", function() {

0 commit comments

Comments
 (0)