summaryrefslogtreecommitdiff
path: root/django/test/testcases.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-11-28 21:51:17 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-11-28 21:51:17 +0000
commita97abcffc27c5026041afccb1d76f7e4e4b1df69 (patch)
treec6abc02b4d90e83788f6d156ca8efecb25cbae1c /django/test/testcases.py
parent5d85a5147b55cbe7940df2321e73c48ca265f649 (diff)
queryset-refactor: Merged from trunk up to [6724].
git-svn-id: http://code.djangoproject.com/svn/django/branches/queryset-refactor@6726 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/test/testcases.py')
-rw-r--r--django/test/testcases.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/test/testcases.py b/django/test/testcases.py
index 2aa0a0783d..1d65ee1d23 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -51,9 +51,9 @@ class TestCase(unittest.TestCase):
def _pre_setup(self):
"""Performs any pre-test setup. This includes:
- * If the Test Case class has a 'fixtures' member, clearing the
- database and installing the named fixtures at the start of each
- test.
+ * Flushing the database.
+ * If the Test Case class has a 'fixtures' member, installing the
+ named fixtures.
* Clearing the mail test outbox.
"""
call_command('flush', verbosity=0, interactive=False)