| Index: tests/compiler/dart2js_extra/to_string_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/to_string_test.dart b/tests/compiler/dart2js_extra/to_string_test.dart
|
| index ee28afe01be7b16a943164fd4120356db649d327..02275348fd371fd3963e955dfd87d3c753938434 100644
|
| --- a/tests/compiler/dart2js_extra/to_string_test.dart
|
| +++ b/tests/compiler/dart2js_extra/to_string_test.dart
|
| @@ -9,7 +9,7 @@ class Concater {
|
| final x;
|
| final y;
|
| Concater(x, y) : this.x = x, this.y = y;
|
| - add() => x.concat(y.toString());
|
| + add() => x + y.toString();
|
| }
|
|
|
| test(expected, x) {
|
|
|