| Index: tests/compiler/dart2js/mirrors_test.dart
|
| diff --git a/tests/compiler/dart2js/mirrors_test.dart b/tests/compiler/dart2js/mirrors_test.dart
|
| index 2c7b09fe0867b104215f2a6ba43a927287d0c88d..7d3c48cb61ff93491c353a2ec92ece6243b3c3e6 100644
|
| --- a/tests/compiler/dart2js/mirrors_test.dart
|
| +++ b/tests/compiler/dart2js/mirrors_test.dart
|
| @@ -183,7 +183,8 @@ void testFoo(MirrorSystem system, LibraryMirror helperLibrary,
|
| Expect.isTrue(metadata is InstanceMirror);
|
| Expect.isFalse(metadata.hasReflectee);
|
| Expect.throws(() => metadata.reflectee, (_) => true);
|
| - Expect.isTrue(metadata is CommentInstanceMirror);
|
| + Expect.isTrue(metadata is CommentInstanceMirror,
|
| + "Unexpected metadata: $metadata");
|
| Expect.equals(commentType.originalDeclaration, metadata.type);
|
| Expect.isTrue(metadata.isDocComment);
|
| Expect.stringEquals(
|
|
|