Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(792)

Unified Diff: tests/lib/mirrors/mirrors_test.dart

Issue 223673007: Move mirrors-test from dart2js_extra to lib/mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/mirrors/dart2js_mirrors_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'));
« no previous file with comments | « tests/lib/mirrors/dart2js_mirrors_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698