Skip to content

Commit

Permalink
test(http_client_conformance_tests): Remove old skips
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin committed Aug 3, 2024
1 parent 73fce77 commit 04c1e1a
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 04c1e1a

Please sign in to comment.