Skip to content

Commit cbd575f

Browse files
committed
Assignment tests passing
1 parent b1d49d3 commit cbd575f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

topics/about_assignment.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ $(document).ready(function(){
44
module("About Assignment (topics/about_assignment.js)");
55

66
test("local variables", function() {
7-
var temp = __;
7+
var temp = 1;
88
equals(1, temp, "Assign a value to the variable temp");
99
});
1010

1111
test("global variables", function() {
1212
temp = 1;
13-
equals(temp, window.__, 'global variables are assigned to the window object');
13+
equals(temp, window.temp, 'global variables are assigned to the window object');
1414
});
1515

1616
});

0 commit comments

Comments
 (0)