Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
carterkozak committed Feb 16, 2020
1 parent 8b661a7 commit b6c3bd3
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ public final class EmptyBodyTest {
@Test
public void testSerialization() throws IOException {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
EmptyBody.serializer("application/json")
.serialize(EmptyBody.INSTANCE)
.writeTo(baos);
EmptyBody.serializer("application/json").serialize(EmptyBody.INSTANCE).writeTo(baos);
assertThat(baos.toByteArray()).isEmpty();
assertThat(EmptyBody.serializer("application/json")
.serialize(EmptyBody.INSTANCE)
Expand Down

0 comments on commit b6c3bd3

Please sign in to comment.