Update from 684 to 776 for payment address length to account for signature

This commit is contained in:
Ehren Kret 2021-03-26 16:14:08 -05:00
parent e2b093abce
commit 3745a0b81d
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ public class CreateProfileRequest {
private String about; private String about;
@JsonProperty @JsonProperty
@ExactlySize({0, 684}) @ExactlySize({0, 776})
private String paymentAddress; private String paymentAddress;
@JsonProperty @JsonProperty

View File

@ -485,7 +485,7 @@ public class ProfileControllerTest {
clearInvocations(AuthHelper.VALID_ACCOUNT_TWO); clearInvocations(AuthHelper.VALID_ACCOUNT_TWO);
final String name = RandomStringUtils.randomAlphabetic(380); final String name = RandomStringUtils.randomAlphabetic(380);
final String paymentAddress = RandomStringUtils.randomAlphanumeric(684); final String paymentAddress = RandomStringUtils.randomAlphanumeric(776);
Response response = resources.getJerseyTest() Response response = resources.getJerseyTest()
.target("/v1/profile") .target("/v1/profile")
@ -523,7 +523,7 @@ public class ProfileControllerTest {
clearInvocations(AuthHelper.VALID_ACCOUNT_TWO); clearInvocations(AuthHelper.VALID_ACCOUNT_TWO);
final String name = RandomStringUtils.randomAlphabetic(380); final String name = RandomStringUtils.randomAlphabetic(380);
final String paymentAddress = RandomStringUtils.randomAlphanumeric(684); final String paymentAddress = RandomStringUtils.randomAlphanumeric(776);
Response response = resources.getJerseyTest() Response response = resources.getJerseyTest()
.target("/v1/profile") .target("/v1/profile")
@ -572,7 +572,7 @@ public class ProfileControllerTest {
clearInvocations(AuthHelper.VALID_ACCOUNT_TWO); clearInvocations(AuthHelper.VALID_ACCOUNT_TWO);
final String name = RandomStringUtils.randomAlphabetic(380); final String name = RandomStringUtils.randomAlphabetic(380);
final String paymentAddress = RandomStringUtils.randomAlphanumeric(684); final String paymentAddress = RandomStringUtils.randomAlphanumeric(776);
Response response = resources.getJerseyTest() Response response = resources.getJerseyTest()
.target("/v1/profile") .target("/v1/profile")