| Index: dart/tests/compiler/dart2js_native/hash_code_test.dart
|
| diff --git a/dart/tests/compiler/dart2js_native/native_to_string_frog_test.dart b/dart/tests/compiler/dart2js_native/hash_code_test.dart
|
| similarity index 88%
|
| copy from dart/tests/compiler/dart2js_native/native_to_string_frog_test.dart
|
| copy to dart/tests/compiler/dart2js_native/hash_code_test.dart
|
| index a21ff2ebfb9b31b848cbfa397bf91ee36ca2ef71..af4344167114741104e3e0531485fcd3c90b83c9 100644
|
| --- a/dart/tests/compiler/dart2js_native/native_to_string_frog_test.dart
|
| +++ b/dart/tests/compiler/dart2js_native/hash_code_test.dart
|
| @@ -10,8 +10,7 @@ function A() {}
|
| makeA = function(){return new A;};
|
| """;
|
|
|
| -
|
| main() {
|
| setup();
|
| - Expect.isTrue(makeA().toString() is String);
|
| + Expect.isTrue(makeA().hashCode() is int);
|
| }
|
|
|