Skip to content

Commit d1869a4

Browse files
committed
Update topics/about_scope.js
The answer was given,was that on purpose?
1 parent 835fc62 commit d1869a4

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)