| 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);
|
| };
|
|
|