Skip to content

Commit 05e4759

Browse files
jk-idealoNylle
authored andcommitted
fix: set appropriate default min-size
The defaults for the Configuration object are 2 and 10 for min and max respectively. The defaults for annotation config should be matching.
1 parent e17d7c4 commit 05e4759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/nylle/javafixture/annotations/fixture/TestWithFixture.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
@ArgumentsSource(JavaFixtureProvider.class)
1616
@ParameterizedTest
1717
public @interface TestWithFixture {
18-
int minCollectionSize() default 10;
18+
int minCollectionSize() default 2;
1919

2020
int maxCollectionSize() default 10;
2121

0 commit comments

Comments
 (0)