Index: test/mjsunit/strong/functions.js |
diff --git a/test/mjsunit/strong/functions.js b/test/mjsunit/strong/functions.js |
index a237270977d166f4eccc6141c26f9387c2f28196..6956462e5d5edcc45d17a92a83c929dba5eface5 100644 |
--- a/test/mjsunit/strong/functions.js |
+++ b/test/mjsunit/strong/functions.js |
@@ -47,8 +47,8 @@ |
(function LexicalBindings(global) { |
assertEquals('function', typeof f); |
assertEquals('function', typeof g); |
- assertFalse(global.hasOwnProperty("f")); |
- assertFalse(global.hasOwnProperty("g")); |
+ assertEquals(undefined, global.f); |
+ assertEquals(undefined, global.g); |
})(this); |
(function ImmutableBindings() { |