Skip to content

Commit

Permalink
Make EmailsTests more robust
Browse files Browse the repository at this point in the history
  • Loading branch information
jlink committed Feb 19, 2021
1 parent c1aea1f commit a363d1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/test/java/net/jqwik/web/api/EmailsTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void validCharsBeforeAtQuoted(@ForAll("onlyQuoted") String email) {
}

@Property
void validUseOfQuotedBackslashAndQuotationMarks(@ForAll("withQuoted") String email) {
void validUseOfQuotedBackslashAndQuotationMarks(@ForAll("onlyQuoted") String email) {
String localPart = getLocalPartOfEmail(email);
Assume.that(isQuoted(localPart));
localPart = localPart.substring(1, localPart.length() - 1);
Expand Down

0 comments on commit a363d1b

Please sign in to comment.