From d69e44d1de0a10b31e55228a5c0f435001eb0d65 Mon Sep 17 00:00:00 2001 From: TharmiganK Date: Fri, 20 Oct 2023 14:59:17 +0530 Subject: [PATCH] Disable test cases fails on windows --- .../tests/http2_configuration_request_limit_config_test.bal | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ballerina-tests/tests/http2_configuration_request_limit_config_test.bal b/ballerina-tests/tests/http2_configuration_request_limit_config_test.bal index 39dd96f24a..70ef20c2e3 100644 --- a/ballerina-tests/tests/http2_configuration_request_limit_config_test.bal +++ b/ballerina-tests/tests/http2_configuration_request_limit_config_test.bal @@ -129,7 +129,8 @@ function testHttp2ValidHeaderLength() returns error? { } //Tests the behaviour when header size is greater than the configured threshold -@test:Config {} +// TODO: Enable after fixing this issue : https://github.com/ballerina-platform/ballerina-standard-library/issues/3963 +@test:Config {enable: false} function testHttp2InvalidHeaderLength() returns error? { http:Client limitClient = check new("http://localhost:" + http2RequestLimitsTestPort3.toString(), http2Settings = { http2PriorKnowledge: true }); @@ -139,7 +140,8 @@ function testHttp2InvalidHeaderLength() returns error? { } // Tests the fallback behaviour when header size is greater than the configured http2 service -@test:Config {} +// TODO: Enable after fixing this issue : https://github.com/ballerina-platform/ballerina-standard-library/issues/3963 +@test:Config {enable: false} function testHttp2Http2ServiceInvalidHeaderLength() returns error? { http:Client limitClient = check new("http://localhost:" + requestLimitsTestPort5.toString(), http2Settings = { http2PriorKnowledge: true });