summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Jerdonek <chris.jerdonek@gmail.com>2021-07-08 23:20:16 -0700
committerGitHub <noreply@github.com>2021-07-09 08:20:16 +0200
commitf5dccbafb957841d0867f0b153d7f7123f0ec83d (patch)
tree32cb14654bdf18c92b8cccc292c4d0a0d17c99fc
parentae32e337e0fd7547cce9bce04be1cf256e0a7bd5 (diff)
Refs #24522 -- Fixed code comment about seeds in Shuffler.__init__().
-rw-r--r--django/test/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/runner.py b/django/test/runner.py
index ab6538b61d..b22b8c3bf2 100644
--- a/django/test/runner.py
+++ b/django/test/runner.py
@@ -492,7 +492,7 @@ class Shuffler:
def __init__(self, seed=None):
if seed is None:
- # Limit seeds to 9 digits for simpler output.
+ # Limit seeds to 10 digits for simpler output.
seed = random.randint(0, 10**10 - 1)
seed_source = 'generated'
else: