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

Unified Diff: tests/standalone/io/regress-1925.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_stdout_test.dart ('k') | tests/standalone/io/socket_close_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/regress-1925.dart
diff --git a/tests/standalone/io/regress-1925.dart b/tests/standalone/io/regress-1925.dart
index 4409e6acb2e670b95a0fc83f68490245745b26eb..6e68160c18628a85dbfdf21117796442b2e0c117 100644
--- a/tests/standalone/io/regress-1925.dart
+++ b/tests/standalone/io/regress-1925.dart
@@ -39,7 +39,7 @@ class Regress1925Test extends TestingServerTest {
var buffer = new List(5);
Socket socket = new Socket(TestingServer.HOST, _port);
socket.onConnect = () {
- socket.outputStream.write("12345".charCodes());
+ socket.outputStream.write("12345".charCodes);
socket.outputStream.close();
socket.inputStream.onData = () {
count += socket.inputStream.readInto(buffer, count);
« no previous file with comments | « tests/standalone/io/process_stdout_test.dart ('k') | tests/standalone/io/socket_close_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698