Skip to content

Commit df82060

Browse files
committed
Formatting
1 parent 703a6dc commit df82060

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/statsd/StatsdMetricWriterTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ public void periodPrefix() throws Exception {
102102
public void incrementMetricWithInvalidCharsInName() throws Exception {
103103
this.writer.increment(new Delta<Long>("counter.fo:o", 3L));
104104
this.server.waitForMessage();
105-
assertThat(this.server.messagesReceived().get(0)).isEqualTo("me.counter.fo-o:3|c");
105+
assertThat(this.server.messagesReceived().get(0))
106+
.isEqualTo("me.counter.fo-o:3|c");
106107
}
107108

108109
@Test

0 commit comments

Comments
 (0)