Skip to content

Commit

Permalink
new email generator bc current didnt generate enough divers emails
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGankalot committed May 22, 2024
1 parent f04bcb3 commit f984b01
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions checker/src/checker_util_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ async def create_user(
public_key: Optional[str] = None,
) -> None:

email = ''.join(random.choice(string.ascii_lowercase) for _ in range(30)) + "@example.com"
firstName = ''.join(random.choice(string.ascii_lowercase) for _ in range(10))
password1 = ''.join(random.choice(string.ascii_lowercase) for _ in range(10))
email = "".join(random.choices(string.ascii_letters + string.digits, k=20)) + "@example.com"
firstName = "".join(random.choices(string.ascii_letters + string.digits, k=20))
password1 = "".join(random.choices(string.ascii_letters + string.digits, k=20))
password2 = password1
logger.info(f"Creating user with email: {email} firstName: {firstName} password1: {password1} password2: {password2}")
logger.info(f"public_key on?: {public_key}")
Expand Down

0 comments on commit f984b01

Please sign in to comment.