Skip to content

Commit ab2bc55

Browse files
committed
Merge pull request liammclennan#25 from magopian/patch-3
Update topics/about_scope.js
2 parents 835fc62 + d1869a4 commit ab2bc55

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

topics/about_scope.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
module("About Scope (topics/about_scope.js)");
32

43
thisIsAGlobalVariable = 77;
@@ -18,5 +17,5 @@ test("variables declared inside of a function", function() {
1817
})();
1918

2019
equals(outerVariable, __, 'is outerVariable defined in this scope?');
21-
equals(typeof(innerVariable), "undefined", 'is innerVariable defined in this scope?');
20+
equals(typeof(innerVariable), __, 'is innerVariable defined in this scope?');
2221
});

0 commit comments

Comments
 (0)