| 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 f1eac1ec7c59c9a5af78306a688fd30b225a3ad1..51f370841c3174b328a6cc6ebfc9c1618e76cc64 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"));
|
| }
|
|
|
|
|