Skip to content

Commit

Permalink
Minor edit
Browse files Browse the repository at this point in the history
  • Loading branch information
gcatanese committed Mar 19, 2024
1 parent f15b256 commit e4ec303
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -247,18 +247,6 @@ public void convertNestedArrayObjectListToJson() {

}

class LineItem {
Integer quantity;
String description;

LineItem(Integer quantity, String description) {
this.quantity = quantity;
this.description = description;
}
}



@Test
public void formatString() {
final String EXPECTED = "{\\\\\\\"live\\\\\\\": \\\\\\\"false\\\\\\\", \\\\\\\"demo\\\\\\\": \\\\\\\"yes\\\\\\\"}";
Expand All @@ -268,5 +256,4 @@ public void formatString() {
assertEquals(EXPECTED, new ExampleJsonHelper().formatString(json));
}


}

0 comments on commit e4ec303

Please sign in to comment.