Skip to content

Commit 76512c4

Browse files
test(http_client_conformance_tests): Remove old skips (#1284)
1 parent d7ae256 commit 76512c4

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff 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');

0 commit comments

Comments
 (0)