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 });