Formatting

This commit is contained in:
Phillip Webb 2017-04-27 10:12:31 -07:00
parent 703a6dc056
commit df82060cad
1 changed files with 2 additions and 1 deletions

View File

@ -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