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

Unified Diff: tests/standalone/io/windows_environment_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/windows_environment_test.dart
diff --git a/tests/standalone/io/windows_environment_test.dart b/tests/standalone/io/windows_environment_test.dart
index 1812c2563df93e160b26dab79eeb5f44b585414f..dfe5af6ad9ecee8a6262ef03fa4bfc62a8a5efe9 100644
--- a/tests/standalone/io/windows_environment_test.dart
+++ b/tests/standalone/io/windows_environment_test.dart
@@ -20,7 +20,7 @@ set SCRIPTDIR=%~dp0
var scriptDir = new Path(options.script).directoryPath;
var script = scriptDir.append('windows_environment_script.dart');
Process.run('cmd',
- ['/c', funkyFile.name, dart, script.toNativePath()]).then((p) {
+ ['/c', funkyFile.path, dart, script.toNativePath()]).then((p) {
Expect.equals(0, p.exitCode);
tempDir.deleteSync(recursive: true);
});

Powered by Google App Engine
This is Rietveld 408576698