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

Unified Diff: tests/standalone/io/print_sync_test.dart

Issue 25482002: Fix print_sync_test for Windows, by using Uri:file instead of Uri:parse. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/standalone/io/print_sync_test.dart
diff --git a/tests/standalone/io/print_sync_test.dart b/tests/standalone/io/print_sync_test.dart
index 74cc7edcef9c9fafa9319c360f91179c04a15565..05f8014d7ba9a013dfe86f79c6ec9841a1cbb882 100644
--- a/tests/standalone/io/print_sync_test.dart
+++ b/tests/standalone/io/print_sync_test.dart
@@ -10,7 +10,7 @@ import "package:async_helper/async_helper.dart";
void main() {
asyncStart();
Process.run(Platform.executable,
- [Uri.parse(Platform.script)
+ [new Uri.file(Platform.script)
.resolve('print_sync_script.dart').toString()])
.then((out) {
asyncEnd();
« 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