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

Unified Diff: tests/standalone/io/process_check_arguments_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_check_arguments_test.dart
diff --git a/tests/standalone/io/process_check_arguments_test.dart b/tests/standalone/io/process_check_arguments_test.dart
index 46b1cb418444ba7f3f43fea60f8edca98a6962fb..22ccde4d2956d90e5d6455c3678179548456def0 100644
--- a/tests/standalone/io/process_check_arguments_test.dart
+++ b/tests/standalone/io/process_check_arguments_test.dart
@@ -25,14 +25,14 @@ main() {
scriptFile =
new File("../tests/standalone/io/process_check_arguments_script.dart");
}
- test([scriptFile.name, '3', '0', 'a']);
- test([scriptFile.name, '3', '0', 'a b']);
- test([scriptFile.name, '3', '0', 'a\tb']);
- test([scriptFile.name, '3', '1', 'a\tb"']);
- test([scriptFile.name, '3', '1', 'a"\tb']);
- test([scriptFile.name, '3', '1', 'a"\t\\\\"b"']);
- test([scriptFile.name, '4', '0', 'a\tb', 'a']);
- test([scriptFile.name, '4', '0', 'a\tb', 'a\t\t\t\tb']);
- test([scriptFile.name, '4', '0', 'a\tb', 'a b']);
+ test([scriptFile.path, '3', '0', 'a']);
+ test([scriptFile.path, '3', '0', 'a b']);
+ test([scriptFile.path, '3', '0', 'a\tb']);
+ test([scriptFile.path, '3', '1', 'a\tb"']);
+ test([scriptFile.path, '3', '1', 'a"\tb']);
+ test([scriptFile.path, '3', '1', 'a"\t\\\\"b"']);
+ test([scriptFile.path, '4', '0', 'a\tb', 'a']);
+ test([scriptFile.path, '4', '0', 'a\tb', 'a\t\t\t\tb']);
+ test([scriptFile.path, '4', '0', 'a\tb', 'a b']);
}

Powered by Google App Engine
This is Rietveld 408576698