| Index: tests/standalone/io/regress_7097_test.dart
|
| diff --git a/tests/standalone/io/regress_7097_test.dart b/tests/standalone/io/regress_7097_test.dart
|
| index ee108223b01a239d0f0f17ad4e520bc42a2949c9..214f92b0aa347708c08437a3811f31b1b7509daf 100644
|
| --- a/tests/standalone/io/regress_7097_test.dart
|
| +++ b/tests/standalone/io/regress_7097_test.dart
|
| @@ -39,7 +39,7 @@ void main() {
|
|
|
| Future makeRequest(int n) {
|
| var completer = new Completer();
|
| - var url = new Uri.fromString("http://localhost:${server.port}");
|
| + var url = Uri.parse("http://localhost:${server.port}");
|
| var connection = client.openUrl("POST", url);
|
| connection.onRequest = (HttpClientRequest request) {
|
| request.contentLength = n + 1;
|
|
|