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 e9a855a commit 760dbea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gson/src/test/java/com/google/gson/JsonArrayAsListTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ public void testAdd() {
assertThat(list.add(JsonNull.INSTANCE)).isTrue();

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

Expand Down

0 comments on commit 760dbea

Please sign in to comment.