Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl committed Dec 20, 2024
1 parent 2b59d9e commit 85882f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class OperationTemplateCreateRequest {
@JsonSetter(nulls = Nulls.SKIP)
@Schema(description = "Allowed signature types")
@NotEmpty(message = "Template signature types must contain at least one value")
private final List<@NotBlank SignatureType> signatureType = new ArrayList<>();
private final List<SignatureType> signatureType = new ArrayList<>();

/**
* How many failed attempts should be allowed for the operation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class OperationTemplateUpdateRequest {
@Schema(description = "Allowed signature types")
@NotEmpty(message = "Template signature types must contain at least one value")
@JsonSetter(nulls = Nulls.SKIP)
private final List<@NotBlank SignatureType> signatureType = new ArrayList<>();
private final List<SignatureType> signatureType = new ArrayList<>();

@Schema(description = "How many failed attempts should be allowed for the operation")
@NotNull(message = "Template expiration value must not be null when updating operation template")
Expand Down

0 comments on commit 85882f2

Please sign in to comment.