| Index: tests/standalone/io/http_headers_test.dart
|
| diff --git a/tests/standalone/io/http_headers_test.dart b/tests/standalone/io/http_headers_test.dart
|
| index 6dbdcd48eca6719a689e156729beb595a9c3c741..1c84cd51fefe4eda662b03d3c78e0e0349c83484 100644
|
| --- a/tests/standalone/io/http_headers_test.dart
|
| +++ b/tests/standalone/io/http_headers_test.dart
|
| @@ -296,6 +296,8 @@ void testHeaderValue() {
|
| " attachment ;filename=genome.jpeg ;"
|
| "modification-date = \"Wed, 12 February 1997 16:29:51 -0500\"" );
|
| check(headerValue, "attachment", parameters);
|
| + headerValue = HeaderValue.parse("xxx; aaa; bbb; ccc");
|
| + check(headerValue, "xxx", {"aaa": null, "bbb": null, "ccc": null});
|
| }
|
|
|
| void testContentType() {
|
|
|