Skip to content

Commit

Permalink
Update gson/src/test/java/com/google/gson/JsonArrayAsListTest.java
Browse files Browse the repository at this point in the history
Co-authored-by: Marcono1234 <[email protected]>
  • Loading branch information
elevne and Marcono1234 committed Jul 29, 2023
1 parent 9c57a4d commit fe1f6dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gson/src/test/java/com/google/gson/JsonArrayAsListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ public void testAddAll() {
list.addAll(Arrays.asList(new JsonPrimitive(2), new JsonPrimitive(3)));

List<JsonElement> expectedList = Arrays.<JsonElement>asList(
new JsonPrimitive(1),
new JsonPrimitive(2),
new JsonPrimitive(3)
new JsonPrimitive(1),
new JsonPrimitive(2),
new JsonPrimitive(3)
);
assertThat(list).isEqualTo(expectedList);
assertThat(list).isEqualTo(expectedList);
Expand Down

0 comments on commit fe1f6dc

Please sign in to comment.