Skip to content

Commit

Permalink
Disable test cases fails on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
TharmiganK committed Oct 20, 2023
1 parent 5e7204e commit d69e44d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand All @@ -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 });
Expand Down

0 comments on commit d69e44d

Please sign in to comment.