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

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

Issue 11411098: Fix typo in type name in test: string -> String. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/tls_server_test.dart
diff --git a/tests/standalone/io/tls_server_test.dart b/tests/standalone/io/tls_server_test.dart
index 372b114cb3f85c5e7826adcbd80b59ee172d21c2..165c1ef85e632d1996b0d139800cb306a2bc244b 100644
--- a/tests/standalone/io/tls_server_test.dart
+++ b/tests/standalone/io/tls_server_test.dart
@@ -16,7 +16,7 @@ class TlsTestServer {
var data = connection.read();
var received = new String.fromCharCodes(data);
Expect.isTrue(received.contains("Hello from client "));
- string name = received.substring(received.indexOf("client ") + 7);
+ String name = received.substring(received.indexOf("client ") + 7);
var reply_bytes = "Welcome, client $name".charCodes;
connection.writeList(reply_bytes, 0, reply_bytes.length);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698