| Index: tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart | 
| diff --git a/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart b/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart | 
| index 58074dfdef9c282ce2f715d23f9b20fa48566737..c0f03ac85d18d32e1e2fe934fc4ae4a72dd30d2c 100644 | 
| --- a/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart | 
| +++ b/tests/compiler/dart2js_native/native_no_such_method_exception5_frog_test.dart | 
| @@ -4,7 +4,7 @@ | 
|  | 
| class A native "*A" { | 
| bar() => 42; | 
| -  noSuchMethod(x,y) => "native($x:$y)"; | 
| +  noSuchMethod(x) => "native(${x.memberName}:${x.positionalArguments})"; | 
| } | 
|  | 
| class B native "*B" { | 
| @@ -13,7 +13,7 @@ class B native "*B" { | 
|  | 
| class C { | 
| static create() => new C(); | 
| -  noSuchMethod(x, y) => "$x:$y"; | 
| +  noSuchMethod(x) => "${x.memberName}:${x.positionalArguments}"; | 
| } | 
|  | 
| makeA() native; | 
|  |