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

Unified Diff: tests/isolate/package_root_test.dart

Issue 592013002: Fix test in checked mode. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/isolate/package_root_test.dart
diff --git a/tests/isolate/package_root_test.dart b/tests/isolate/package_root_test.dart
index f0f983fd22a0b54e41fbbaf46cea87fc00a6fa9a..2ee6b30aa36ae2afb7c33a1ea47423c439bb8bc1 100644
--- a/tests/isolate/package_root_test.dart
+++ b/tests/isolate/package_root_test.dart
@@ -5,7 +5,7 @@
import 'dart:io';
import 'dart:isolate';
-const SPAWN_PACKAGE_ROOT = "otherPackageRoot";
+final SPAWN_PACKAGE_ROOT = Uri.parse("otherPackageRoot");
void main([args, port]) {
if (port != null) {
@@ -28,7 +28,7 @@ void testPackageRoot(args) {
if (parentPackageRoot == Platform.packageRoot) {
throw "Got parent package root";
}
- if (Platform.packageRoot != SPAWN_PACKAGE_ROOT) {
+ if (Uri.parse(Platform.packageRoot) != SPAWN_PACKAGE_ROOT) {
throw "Wrong package root";
}
args[0].send(null);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698