Skip to content

Commit

Permalink
test(http_client_conformance_tests): Remove old skips (#1284)
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Aug 7, 2024
1 parent d7ae256 commit 76512c4
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,7 @@ void testResponseHeaders(Client client,
httpServerChannel.sink.add('content-length: \t 0 \t \r\n');
final response = await client.get(Uri.http(host, ''));
expect(response.contentLength, 0);
},
skip: 'Enable after https://github.com/dart-lang/sdk/issues/51532 '
'is fixed');
});

test('non-integer', () async {
httpServerChannel.sink.add('content-length: cat\r\n');
Expand Down Expand Up @@ -163,9 +161,7 @@ void testResponseHeaders(Client client,

final response = await client.get(Uri.http(host, ''));
expect(response.headers['foo'], 'BAR BAZ');
},
skip: 'Enable after https://github.com/dart-lang/sdk/issues/53185 '
'is fixed');
});

test('extra whitespace', () async {
httpServerChannel.sink.add('foo: BAR \t \r\n \t BAZ \t \r\n');
Expand Down

0 comments on commit 76512c4

Please sign in to comment.