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 dea3703d89..39900435e7 100644
--- a/django/test/runner.py
+++ b/django/test/runner.py
@@ -669,7 +669,7 @@ class DiscoverRunner:
# found or that couldn't be loaded due to syntax errors.
test_types = (unittest.loader._FailedTest, *self.reorder_by)
all_tests = list(reorder_tests(all_tests, test_types, self.reverse))
- self.log('Found %d tests.' % len(all_tests), level=logging.INFO)
+ self.log('Found %d test(s).' % len(all_tests))
suite = self.test_suite(all_tests)
if self.parallel > 1: