| Index: tests/compiler/dart2js/array_static_intercept_test.dart
|
| diff --git a/tests/compiler/dart2js/array_static_intercept_test.dart b/tests/compiler/dart2js/array_static_intercept_test.dart
|
| index 6bb9fda72608127bb0d9c4a178e5142f4b52c795..6f7bf0a609d3cd1cfe902c819ceb7737d4a02a4a 100644
|
| --- a/tests/compiler/dart2js/array_static_intercept_test.dart
|
| +++ b/tests/compiler/dart2js/array_static_intercept_test.dart
|
| @@ -4,7 +4,7 @@
|
|
|
| #import("compiler_helper.dart");
|
|
|
| -const String TEST_ONE = @"""
|
| +const String TEST_ONE = r"""
|
| foo(a) {
|
| a.add(42);
|
| a.removeLast();
|
| @@ -14,7 +14,7 @@ foo(a) {
|
|
|
| main() {
|
| String generated = compile(TEST_ONE, 'foo');
|
| - Expect.isTrue(generated.contains(@'.add$1('));
|
| - Expect.isTrue(generated.contains(@'.removeLast('));
|
| - Expect.isTrue(generated.contains(@'.get$length('));
|
| + Expect.isTrue(generated.contains(r'.add$1('));
|
| + Expect.isTrue(generated.contains(r'.removeLast('));
|
| + Expect.isTrue(generated.contains(r'.get$length('));
|
| }
|
|
|