| Index: tests/lib/mirrors/mirrors_test.dart
|
| diff --git a/tests/lib/mirrors/mirrors_test.dart b/tests/lib/mirrors/mirrors_test.dart
|
| index 1dafef97445bc781151b81db45cac59f986e10ff..a08362274c501616863e57a57c2f90834f2cdc45 100644
|
| --- a/tests/lib/mirrors/mirrors_test.dart
|
| +++ b/tests/lib/mirrors/mirrors_test.dart
|
| @@ -223,7 +223,13 @@ main() {
|
| (Uri uri) => uri.path.endsWith('mirrors_test.dart'));
|
| });
|
| test("Test dart library uri", () {
|
| - testLibraryUri("test", (Uri uri) => uri == Uri.parse('dart:core'));
|
| + testLibraryUri("test",
|
| + (Uri uri) {
|
| + if (uri == Uri.parse('dart:core')) return true;
|
| + // TODO(floitsch): do we want to fake the interceptors to
|
| + // be in dart:core?
|
| + return (uri == Uri.parse('dart:_interceptors'));
|
| + });
|
| });
|
| test("Test simple and qualifiedName", () { testNames(mirrors); });
|
| test("Test reflect type", () { testReflectClass(mirrors); });
|
|
|