Browse Source

Formatting

pull/7262/merge
Phillip Webb 9 years ago
parent
commit
df82060cad
  1. 3
      spring-boot-actuator/src/test/java/org/springframework/boot/actuate/metrics/statsd/StatsdMetricWriterTests.java

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

@ -102,7 +102,8 @@ public class StatsdMetricWriterTests { @@ -102,7 +102,8 @@ public class StatsdMetricWriterTests {
public void incrementMetricWithInvalidCharsInName() throws Exception {
this.writer.increment(new Delta<Long>("counter.fo:o", 3L));
this.server.waitForMessage();
assertThat(this.server.messagesReceived().get(0)).isEqualTo("me.counter.fo-o:3|c");
assertThat(this.server.messagesReceived().get(0))
.isEqualTo("me.counter.fo-o:3|c");
}
@Test

Loading…
Cancel
Save