| Index: tests/compiler/dart2js/string_interpolation_test.dart
|
| diff --git a/tests/compiler/dart2js/string_interpolation_test.dart b/tests/compiler/dart2js/string_interpolation_test.dart
|
| index 4c483fbe8cb2effa4dd413aad1d9b154931c4cc3..8dcd391fae4ba914e50a840016a739560b6f3ecb 100644
|
| --- a/tests/compiler/dart2js/string_interpolation_test.dart
|
| +++ b/tests/compiler/dart2js/string_interpolation_test.dart
|
| @@ -6,9 +6,9 @@
|
|
|
| main() {
|
| String code =
|
| - compileAll(@'''main() { return "${2}${true}${'a'}${3.14}"; }''');
|
| - Expect.isTrue(code.contains(@'2truea3.14'));
|
| + compileAll(r'''main() { return "${2}${true}${'a'}${3.14}"; }''');
|
| + Expect.isTrue(code.contains(r'2truea3.14'));
|
|
|
| - code = compileAll(@'''main() { return "foo ${new Object()}"; }''');
|
| - Expect.isFalse(code.contains(@'concat'));
|
| + code = compileAll(r'''main() { return "foo ${new Object()}"; }''');
|
| + Expect.isFalse(code.contains(r'concat'));
|
| }
|
|
|