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,
132
132
httpServerChannel.sink.add ('content-length: \t 0 \t \r\n ' );
133
133
final response = await client.get (Uri .http (host, '' ));
134
134
expect (response.contentLength, 0 );
135
- },
136
- skip: 'Enable after https://github.com/dart-lang/sdk/issues/51532 '
137
- 'is fixed' );
135
+ });
138
136
139
137
test ('non-integer' , () async {
140
138
httpServerChannel.sink.add ('content-length: cat\r\n ' );
@@ -163,9 +161,7 @@ void testResponseHeaders(Client client,
163
161
164
162
final response = await client.get (Uri .http (host, '' ));
165
163
expect (response.headers['foo' ], 'BAR BAZ' );
166
- },
167
- skip: 'Enable after https://github.com/dart-lang/sdk/issues/53185 '
168
- 'is fixed' );
164
+ });
169
165
170
166
test ('extra whitespace' , () async {
171
167
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