We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fb35294 + 102af1c commit 1f515d3Copy full SHA for 1f515d3
password_policies/tests/lib.py
@@ -46,7 +46,7 @@ def create_user(
46
if not raw_password:
47
raw_password = passwords[-1]
48
if not date_joined:
49
- rind = randint(0, (duration / count + 1))
+ rind = randint(0, (duration // count + 1))
50
seconds = (count * duration + rind) * 2
51
date_joined = get_datetime_from_delta(timezone.now(), seconds)
52
if not last_login:
0 commit comments