summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
diff options
context:
space:
mode:
authorFrançois Freitag <mail+github@franek.fr>2017-06-18 18:24:20 -0700
committerTim Graham <timograham@gmail.com>2017-06-18 21:24:20 -0400
commite36598f963ae492ea4f3afe73d4e70b5a097f93a (patch)
tree1a6b2a886637b1c850d0df50fc89e852f3c21e49 /django/test/testcases.py
parentd1d73480019fc3754b335878be07f00b5321a065 (diff)
Refs #27539 -- Fixed typo in TransactionTestCase._pre_setup() comment.
Diffstat (limited to 'django/test/testcases.py')
-rw-r--r--django/test/testcases.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py
index 9d890301b9..983b0bffba 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -827,7 +827,7 @@ class TransactionTestCase(SimpleTestCase):
enter=False,
)
raise
- # Clear the queries_log so that it's less likley to overflow (a single
+ # Clear the queries_log so that it's less likely to overflow (a single
# test probably won't execute 9K queries). If queries_log overflows,
# then assertNumQueries() doesn't work.
for db_name in self._databases_names(include_mirrors=False):