Skip to content

Commit

Permalink
Fix test for Job provider for el_GR locale to accept skills of up to …
Browse files Browse the repository at this point in the history
…4 words
  • Loading branch information
gvrettos committed Oct 27, 2024
1 parent e10eb76 commit 79e2821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/net/datafaker/providers/base/JobTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected Collection<TestSpec> providerListTest() {
return List.of(TestSpec.of(job::field, "job.field"),
TestSpec.of(job::seniority, "job.seniority"),
TestSpec.of(job::position, "job.position"),
TestSpec.of(job::keySkills, "job.key_skills", "(?:\\p{L}+ ?){1,3}"));
TestSpec.of(job::keySkills, "job.key_skills", "(?:\\p{L}+ ?){1,4}"));
}
}
}

0 comments on commit 79e2821

Please sign in to comment.