Skip to content

Commit

Permalink
Fix line length
Browse files Browse the repository at this point in the history
  • Loading branch information
dilanSachi committed Jan 30, 2024
1 parent 3bf002f commit f005c86
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

import static io.ballerina.stdlib.http.transport.contract.Constants.REMOTE_SERVER_SENT_GOAWAY_BEFORE_INITIATING_INBOUND_RESPONSE;
import static io.ballerina.stdlib.http.transport.contract.Constants
.REMOTE_SERVER_SENT_GOAWAY_BEFORE_INITIATING_INBOUND_RESPONSE;
import static io.ballerina.stdlib.http.transport.http2.frameleveltests.FrameLevelTestUtils.END_SLEEP_TIME;
import static io.ballerina.stdlib.http.transport.http2.frameleveltests.FrameLevelTestUtils.GO_AWAY_FRAME_MAX_STREAM_01;
import static io.ballerina.stdlib.http.transport.http2.frameleveltests.FrameLevelTestUtils.SETTINGS_FRAME;
Expand Down Expand Up @@ -72,7 +73,8 @@ private void testGoAwayFor100ContinueForASingleStream() {
HttpResponseFuture responseFuture = h2ClientWithPriorKnowledge.send(httpsPostReq);
responseFuture.setHttpConnectorListener(requestListener);
latch.await(TestUtil.HTTP2_RESPONSE_TIME_OUT, TimeUnit.SECONDS);
assertEquals(getErrorResponseMessage(requestListener), REMOTE_SERVER_SENT_GOAWAY_BEFORE_INITIATING_INBOUND_RESPONSE);
assertEquals(getErrorResponseMessage(requestListener),
REMOTE_SERVER_SENT_GOAWAY_BEFORE_INITIATING_INBOUND_RESPONSE);
} catch (InterruptedException e) {
LOGGER.error("Interrupted exception occurred");
}
Expand Down

0 comments on commit f005c86

Please sign in to comment.