Skip to content

Commit

Permalink
fix one test
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-mfg committed Oct 2, 2023
1 parent 96bb554 commit e7e4ab1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@ public void modelWithWrappedXmlTest() {
Assert.assertEquals(property2.getter, "getArray");
Assert.assertEquals(property2.setter, "setArray");
Assert.assertEquals(property2.dataType, "List<String>");
Assert.assertEquals(property2.name, "array");
Assert.assertEquals(property2.name, "_array");
Assert.assertEquals(property2.defaultValue, null);
Assert.assertEquals(property2.baseType, "List");
Assert.assertTrue(property2.isContainer);
Expand All @@ -983,7 +983,7 @@ public void modelWithWrappedXmlTest() {
Assert.assertNotNull(property2.items);
CodegenProperty items = property2.items;
Assert.assertEquals(items.xmlName, "i");
Assert.assertEquals(items.baseName, "array");
Assert.assertEquals(items.baseName, "_array");
}

@Test(description = "convert a boolean parameter")
Expand Down

0 comments on commit e7e4ab1

Please sign in to comment.