-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Password Randomizer #429
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the PR! It LGTM, I just added a couple of minor change requests. Please don't hesitate to add your name to the Javadoc @author
as well as in the "contributors" section of the README .
* | ||
* @return a new {@link PasswordRandomizer} | ||
*/ | ||
public static PasswordRandomizer aNewPasswordRandomizer() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you please remove these static factory methods? They were deprecated in other places (see 735b245)
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the changes in this file from the PR.
@@ -43,6 +43,7 @@ void whenSafeModeIsEnabled_thenDomainNameShouldBeInvalid() { | |||
|
|||
// then | |||
assertThat(randomValue).contains("@example.com"); // example.com is the only domain in faker's data file with 'en' locale (see en:faker:internet:safe_email: in en.yml) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove the changes in this file from the PR.
No description provided.