| Index: tests/compiler/dart2js_extra/string_interpolation_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/string_interpolation_test.dart b/tests/compiler/dart2js_extra/string_interpolation_test.dart
|
| index bf57131722f22ee17d913af636beae75e454a51e..70357dc367bdec31df7f1583b82817caaceb5cce 100644
|
| --- a/tests/compiler/dart2js_extra/string_interpolation_test.dart
|
| +++ b/tests/compiler/dart2js_extra/string_interpolation_test.dart
|
| @@ -16,14 +16,14 @@ void nfun() => null;
|
| void testEscapes() {
|
| // Test that escaping the '$' prevents string interpolation.
|
| String x = "NOT HERE";
|
| - Expect.equals(@'a${x}', 'a\${x}');
|
| - Expect.equals(@'a$x', 'a\$x');
|
| - Expect.equals(@'a${x}', '''a\${x}''');
|
| - Expect.equals(@'a$x', '''a\$x''');
|
| - Expect.equals(@'a${x}', "a\${x}");
|
| - Expect.equals(@'a$x', "a\$x");
|
| - Expect.equals(@'a${x}', """a\${x}""");
|
| - Expect.equals(@'a$x', """a\$x""");
|
| + Expect.equals(r'a${x}', 'a\${x}');
|
| + Expect.equals(r'a$x', 'a\$x');
|
| + Expect.equals(r'a${x}', '''a\${x}''');
|
| + Expect.equals(r'a$x', '''a\$x''');
|
| + Expect.equals(r'a${x}', "a\${x}");
|
| + Expect.equals(r'a$x', "a\$x");
|
| + Expect.equals(r'a${x}', """a\${x}""");
|
| + Expect.equals(r'a$x', """a\$x""");
|
| }
|
|
|
|
|
|
|