| Index: test/browser/language_tests.js
|
| diff --git a/test/browser/language_tests.js b/test/browser/language_tests.js
|
| index 826284f4e95c1fa8a1dd265dfde981a2087e443b..519304f751c852300477dfb75786400ae0a76f93 100644
|
| --- a/test/browser/language_tests.js
|
| +++ b/test/browser/language_tests.js
|
| @@ -84,6 +84,10 @@
|
| 'cha_deopt1_test': skip_fail,
|
| 'cha_deopt2_test': skip_fail,
|
| 'cha_deopt3_test': skip_fail,
|
| +
|
| + // interpolation does not call Dart's toString:
|
| + // https://github.com/dart-lang/dev_compiler/issues/470
|
| + 'class_syntax2_test': skip_fail,
|
| 'classes_static_method_clash_test': skip_fail,
|
| 'closure_call_wrong_argument_count_negative_test': skip_fail,
|
| 'closure_in_constructor_test': skip_fail,
|
| @@ -430,7 +434,6 @@
|
| 'list_replace_range_test': fail,
|
| 'list_set_all_test': fail,
|
| 'list_to_string2_test': fail,
|
| - 'list_to_string_test': fail,
|
| 'main_test': fail,
|
| 'map_keys2_test': fail,
|
| 'map_to_string_test': fail,
|
| @@ -694,7 +697,7 @@
|
| return null;
|
| } catch (e) {
|
| return e;
|
| - };
|
| + }
|
| }
|
|
|
| test(name, function(done) { // 'function' to allow `this.timeout`.
|
|
|