Skip to content

Commit e9440ad

Browse files
committed
Formatting
1 parent 3e8cafa commit e9440ad

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

spring-boot-actuator/src/test/java/org/springframework/boot/actuate/autoconfigure/CrshAutoConfigurationTests.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,10 @@ public void testSshConfiguration() {
115115
PluginLifeCycle lifeCycle = this.context.getBean(PluginLifeCycle.class);
116116

117117
assertEquals("3333", lifeCycle.getConfig().getProperty("crash.ssh.port"));
118-
assertEquals("600000", lifeCycle.getConfig().getProperty("crash.ssh.auth_timeout"));
119-
assertEquals("600000", lifeCycle.getConfig().getProperty("crash.ssh.idle_timeout"));
118+
assertEquals("600000",
119+
lifeCycle.getConfig().getProperty("crash.ssh.auth_timeout"));
120+
assertEquals("600000",
121+
lifeCycle.getConfig().getProperty("crash.ssh.idle_timeout"));
120122
}
121123

122124
@Test
@@ -142,8 +144,10 @@ public void testSshConfigurationCustomTimeouts() {
142144

143145
PluginLifeCycle lifeCycle = this.context.getBean(PluginLifeCycle.class);
144146

145-
assertEquals("300000", lifeCycle.getConfig().getProperty("crash.ssh.auth_timeout"));
146-
assertEquals("400000", lifeCycle.getConfig().getProperty("crash.ssh.idle_timeout"));
147+
assertEquals("300000",
148+
lifeCycle.getConfig().getProperty("crash.ssh.auth_timeout"));
149+
assertEquals("400000",
150+
lifeCycle.getConfig().getProperty("crash.ssh.idle_timeout"));
147151
}
148152

149153
private void load(MockEnvironment env) {

0 commit comments

Comments
 (0)