Skip to content

Commit

Permalink
Fix more lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman committed Mar 23, 2024
1 parent 58e0a58 commit f0b01b3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions common/network/HealthCheckedConnectionTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,8 @@ void HealthCheckedConnectionTest::testChannelWithHeavyPacketLoss() {
* Check the channel works when 2 of every 3 heartbeats are lost but the
* timeout interval is 3 * heartbeat_interval rather than the default
*/
void HealthCheckedConnectionTest::testChannelWithHeavyPacketLossLongerTimeout() {
void HealthCheckedConnectionTest::
testChannelWithHeavyPacketLossLongerTimeout() {
options.send_every = 3;
MockHealthCheckedConnection connection(&socket,
&m_ss,
Expand All @@ -284,7 +285,8 @@ void HealthCheckedConnectionTest::testChannelWithHeavyPacketLossLongerTimeout()
* Check the channel fails when 3 of every 4 heartbeats are lost even though
* the timeout interval is 3 * heartbeat_interval
*/
void HealthCheckedConnectionTest::testChannelWithVeryHeavyPacketLossLongerTimeout() {
void HealthCheckedConnectionTest::
testChannelWithVeryHeavyPacketLossLongerTimeout() {
options.send_every = 4;
options.abort_on_failure = false;
MockHealthCheckedConnection connection(&socket,
Expand Down

0 comments on commit f0b01b3

Please sign in to comment.