Skip to content

Commit eec247d

Browse files
committed
Backport #744 in 2.19
1 parent af67275 commit eec247d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/test/java/com/fasterxml/jackson/dataformat/xml/jaxb/BuilderWithJAXB291Test.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ static class AddressBuilder {
8484
String county;
8585

8686
@JsonCreator
87-
public AddressBuilder(@JsonProperty("address1") String address1, @JsonProperty("city") String city, @JsonProperty("stateProvince") String stateProvince,
88-
@JsonProperty("postalCode") String postalCode, @JsonProperty("country") String country) {
87+
public AddressBuilder(@JsonProperty("Address1") String address1, @JsonProperty("City") String city,
88+
@JsonProperty("StateProvince") String stateProvince,
89+
@JsonProperty("PostalCode") String postalCode, @JsonProperty("Country") String country) {
8990
this.address1 = address1;
9091
this.city = city;
9192
this.stateProvince = stateProvince;

0 commit comments

Comments
 (0)