Skip to content

Commit

Permalink
Update test case
Browse files Browse the repository at this point in the history
  • Loading branch information
dilanSachi committed Nov 16, 2023
1 parent 6166016 commit b9a50f3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ public void testResetChannelAttributes() {
@Test
public void testIsKeepAlive() throws ConfigurationException {
HttpCarbonMessage outboundRequestMsg = mock(HttpCarbonMessage.class);
Assert.assertFalse(Util.isKeepAlive(KeepAliveConfig.NEVER, outboundRequestMsg));
HttpCarbonMessage inboundRequestMsg = mock(HttpCarbonMessage.class);
Assert.assertFalse(Util.isKeepAlive(KeepAliveConfig.NEVER, outboundRequestMsg, inboundRequestMsg));
}

}

0 comments on commit b9a50f3

Please sign in to comment.