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

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

Issue 11263040: Make String.charCodes a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files with co19 issue number. Created 8 years, 2 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 | « tests/standalone/io/process_stderr_test.dart ('k') | tests/standalone/io/regress-1925.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/process_stdout_test.dart
diff --git a/tests/standalone/io/process_stdout_test.dart b/tests/standalone/io/process_stdout_test.dart
index 614d16161c49b2147f446eda861048827e489266..ecebe73d0784d47d3d2b538294cd23ce09af651a 100644
--- a/tests/standalone/io/process_stdout_test.dart
+++ b/tests/standalone/io/process_stdout_test.dart
@@ -20,7 +20,7 @@ void test(Future<Process> future, int expectedExitCode) {
Expect.equals(expectedExitCode, exitCode);
};
- List<int> data = "ABCDEFGHI\n".charCodes();
+ List<int> data = "ABCDEFGHI\n".charCodes;
final int dataSize = data.length;
InputStream input = process.stdout;
« no previous file with comments | « tests/standalone/io/process_stderr_test.dart ('k') | tests/standalone/io/regress-1925.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698