From 04c1e1a949aeb1984ae241881efc6186dfa36b00 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Sat, 3 Aug 2024 09:30:26 +0200 Subject: [PATCH] test(http_client_conformance_tests): Remove old skips --- .../lib/src/response_headers_tests.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart b/pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart index b0295fb6f7..4ecb1444b4 100644 --- a/pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart +++ b/pkgs/http_client_conformance_tests/lib/src/response_headers_tests.dart @@ -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'); @@ -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');