We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 363946b commit 8b63c65Copy full SHA for 8b63c65
src/test/java/com/github/nylle/javafixture/testobjects/TestObjectWithJavaxValidationAnnotations.java
@@ -19,7 +19,7 @@ public class TestObjectWithJavaxValidationAnnotations {
19
20
@Size(max = 100)
21
@Column(length = 5)
22
- private String withColumnLengthAnnotationAndMaxAnnotation;
+ private String withMaxAnnotationAndColumnLengthAnnotation;
23
24
public String getWithMinMaxAnnotation() {
25
return withMinMaxAnnotation;
@@ -38,6 +38,6 @@ public String getWithColumnLengthAnnotation() {
38
}
39
40
public String getWithColumnLengthAnnotationAndMaxAnnotation() {
41
- return withColumnLengthAnnotationAndMaxAnnotation;
+ return withMaxAnnotationAndColumnLengthAnnotation;
42
43
0 commit comments