From 76512c4cbf987361421030349fd1946e63e33359 Mon Sep 17 00:00:00 2001 From: Kate <26026535+provokateurin@users.noreply.github.com> Date: Wed, 7 Aug 2024 22:03:53 +0200 Subject: [PATCH] test(http_client_conformance_tests): Remove old skips (#1284) --- .../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');