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