File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
pkgs/http_client_conformance_tests/lib/src Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -132,9 +132,7 @@ void testResponseHeaders(Client client,
132132 httpServerChannel.sink.add ('content-length: \t 0 \t \r\n ' );
133133 final response = await client.get (Uri .http (host, '' ));
134134 expect (response.contentLength, 0 );
135- },
136- skip: 'Enable after https://github.com/dart-lang/sdk/issues/51532 '
137- 'is fixed' );
135+ });
138136
139137 test ('non-integer' , () async {
140138 httpServerChannel.sink.add ('content-length: cat\r\n ' );
@@ -163,9 +161,7 @@ void testResponseHeaders(Client client,
163161
164162 final response = await client.get (Uri .http (host, '' ));
165163 expect (response.headers['foo' ], 'BAR BAZ' );
166- },
167- skip: 'Enable after https://github.com/dart-lang/sdk/issues/53185 '
168- 'is fixed' );
164+ });
169165
170166 test ('extra whitespace' , () async {
171167 httpServerChannel.sink.add ('foo: BAR \t \r\n \t BAZ \t \r\n ' );
You can’t perform that action at this time.
0 commit comments