| Index: tests/compiler/dart2js_extra/mirrors_used_warning_test.dart
|
| diff --git a/tests/compiler/dart2js_extra/mirrors_used_warning_test.dart b/tests/compiler/dart2js_extra/mirrors_used_warning_test.dart
|
| index 9a4eeaa42b4643a68deabc3987e886a7aa79f2dd..e9a4f21e4a28975127aed3f9e9597c7d5ad74c24 100644
|
| --- a/tests/compiler/dart2js_extra/mirrors_used_warning_test.dart
|
| +++ b/tests/compiler/dart2js_extra/mirrors_used_warning_test.dart
|
| @@ -24,12 +24,12 @@ runTests() {
|
| Expect.equals("foo", new A().foo);
|
| Expect.isTrue(lines.isEmpty);
|
| var barResult = new A().bar;
|
| - Expect.equals("bar", barResult); /// minif: ok
|
| + Expect.equals("bar", barResult); //# minif: ok
|
|
|
| Expect.isTrue(lines.length == 1);
|
| var line = lines.first;
|
| Expect.isTrue(line.contains("Warning") &&
|
| - line.contains("bar") && /// minif: continued
|
| + line.contains("bar") && //# minif: continued
|
| line.contains("minif"));
|
| }
|
|
|
|
|