We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f15b256 commit e4ec303Copy full SHA for e4ec303
1 file changed
src/test/java/com/tweesky/cloudtools/codegen/ExampleJsonHelperTest.java
@@ -247,18 +247,6 @@ public void convertNestedArrayObjectListToJson() {
247
248
}
249
250
- class LineItem {
251
- Integer quantity;
252
- String description;
253
-
254
- LineItem(Integer quantity, String description) {
255
- this.quantity = quantity;
256
- this.description = description;
257
- }
258
259
260
261
262
@Test
263
public void formatString() {
264
final String EXPECTED = "{\\\\\\\"live\\\\\\\": \\\\\\\"false\\\\\\\", \\\\\\\"demo\\\\\\\": \\\\\\\"yes\\\\\\\"}";
@@ -268,5 +256,4 @@ public void formatString() {
268
assertEquals(EXPECTED, new ExampleJsonHelper().formatString(json));
269
270
271
272
0 commit comments