fix: code cleanup

This commit is contained in:
2021-05-18 13:56:41 +02:00
parent b00ba50f97
commit 0bb4ba21df
5 changed files with 6 additions and 6 deletions

View File

@ -96,7 +96,7 @@ class EntityDeserializerTest {
"position": [12357, 1371113]
}
""";
assertThat((Rock) mapper.readValue(jsonRepresentingRock, Rock.class))
assertThat(mapper.readValue(jsonRepresentingRock, Rock.class))
.isEqualTo(rock);
}
@ -258,4 +258,4 @@ class EntityDeserializerTest {
characterName.setLength(0); // empty the StringBuilder
}
}
}
}