summaryrefslogtreecommitdiff
path: root/django/test/runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/test/runner.py')
-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 fcfdb07d9f..5eafe35416 100644
--- a/django/test/runner.py
+++ b/django/test/runner.py
@@ -178,7 +178,7 @@ def dependency_ordered(test_databases, dependencies):
# Maps db signature to dependencies of all it's aliases
dependencies_map = {}
- # sanity check - no DB can depend on it's own alias
+ # sanity check - no DB can depend on its own alias
for sig, (_, aliases) in test_databases:
all_deps = set()
for alias in aliases: