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

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

Issue 12314153: dart:io | Rename File.name to File.path. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove stray line break. Created 7 years, 10 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
Index: tests/standalone/io/process_non_ascii_test.dart
diff --git a/tests/standalone/io/process_non_ascii_test.dart b/tests/standalone/io/process_non_ascii_test.dart
index e7b31e3b075721d52d11073ba251b5136085bb3d..88291bede5b7095afe6db490baab4b2baa335c6d 100644
--- a/tests/standalone/io/process_non_ascii_test.dart
+++ b/tests/standalone/io/process_non_ascii_test.dart
@@ -24,7 +24,7 @@ main() {
nonAsciiTxtFile.writeAsStringSync('æøå');
var options = new ProcessOptions();
options.workingDirectory = nonAsciiDir.path;
- var script = nonAsciiFile.name;
+ var script = nonAsciiFile.path;
Process.run(executable, [script], options).then((result) {
Expect.equals(0, result.exitCode);
tempDir.deleteSync(recursive: true);

Powered by Google App Engine
This is Rietveld 408576698