Skip to content

Commit

Permalink
fix format issue
Browse files Browse the repository at this point in the history
  • Loading branch information
MrJovanovic13 committed Jul 22, 2024
1 parent 7c1f5a3 commit 1ded56e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void readValueWhenLinkedHashSetThenSuccess() throws Exception {

@Test
public void readValueWhenStringArrayThenSuccess() throws Exception {
String[] array = new String[] {"one", "two"};
String[] array = new String[] { "one", "two" };
String json = this.objectMapper.writeValueAsString(array);
assertThat(this.objectMapper.readValue(json, STRING_ARRAY)).isEqualTo(array);
}
Expand Down

0 comments on commit 1ded56e

Please sign in to comment.