| Index: tests/standalone/io/http_parser_test.dart
|
| diff --git a/tests/standalone/io/http_parser_test.dart b/tests/standalone/io/http_parser_test.dart
|
| index 379614b5a1d83dbef2dc640a47a0f646a8888063..c35fcfbea17ff0a145d97531b114a4e316a0da78 100644
|
| --- a/tests/standalone/io/http_parser_test.dart
|
| +++ b/tests/standalone/io/http_parser_test.dart
|
| @@ -12,6 +12,7 @@ import 'dart:collection';
|
| part '../../../sdk/lib/io/common.dart';
|
| part '../../../sdk/lib/io/io_sink.dart';
|
| part '../../../sdk/lib/io/http.dart';
|
| +part '../../../sdk/lib/io/http_date.dart';
|
| part '../../../sdk/lib/io/http_impl.dart';
|
| part '../../../sdk/lib/io/http_headers.dart';
|
| part '../../../sdk/lib/io/http_parser.dart';
|
| @@ -45,7 +46,7 @@ class HttpParserTest {
|
|
|
| String method;
|
| Uri uri;
|
| - HttpHeaders headers;
|
| + _HttpHeaders headers;
|
| int contentLength;
|
| int bytesReceived;
|
| int unparsedBytesReceived;
|
| @@ -196,7 +197,7 @@ class HttpParserTest {
|
| bool dataEndClose;
|
| int statusCode;
|
| String reasonPhrase;
|
| - HttpHeaders headers;
|
| + _HttpHeaders headers;
|
| int contentLength;
|
| int bytesReceived;
|
| httpParser = new _HttpParser.responseParser();
|
|
|