| Index: tests/lib/mirrors/mirrors_test.dart
|
| diff --git a/tests/lib/mirrors/mirrors_test.dart b/tests/lib/mirrors/mirrors_test.dart
|
| index 0dead1e45640db6930f11bd7f5c4204c505fa2dd..1dafef97445bc781151b81db45cac59f986e10ff 100644
|
| --- a/tests/lib/mirrors/mirrors_test.dart
|
| +++ b/tests/lib/mirrors/mirrors_test.dart
|
| @@ -218,7 +218,9 @@ main() {
|
| test("Test invoke constructor", () { testInvokeConstructor(mirrors); });
|
| test("Test current library uri", () {
|
| testLibraryUri(new Class(),
|
| - (Uri uri) => uri.path.endsWith('/mirrors_test.dart'));
|
| + // TODO(floitsch): change this to "/mirrors_test.dart" when
|
| + // dart2js_mirrors_test.dart has been removed.
|
| + (Uri uri) => uri.path.endsWith('mirrors_test.dart'));
|
| });
|
| test("Test dart library uri", () {
|
| testLibraryUri("test", (Uri uri) => uri == Uri.parse('dart:core'));
|
|
|