diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2020-09-03 00:48:40 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 09:48:40 +0200 |
| commit | 0b8871ab6744285943784795ede053839ee009ef (patch) | |
| tree | 2587481bc4ec0483294f69bc1b85e4c622148cb8 /docs/topics/testing/advanced.txt | |
| parent | daa26acc4e7f134e064c5a6abe4d335f6fa8b249 (diff) | |
Fixed #31979 -- Made django.test.utils.setup_databases()'s time_keeper argument optional.
Diffstat (limited to 'docs/topics/testing/advanced.txt')
| -rw-r--r-- | docs/topics/testing/advanced.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt index 96fadf96b3..54fed92168 100644 --- a/docs/topics/testing/advanced.txt +++ b/docs/topics/testing/advanced.txt @@ -726,7 +726,7 @@ utility methods in the ``django.test.utils`` module. Performs global post-test teardown, such as removing instrumentation from the template system and restoring normal email services. -.. function:: setup_databases(verbosity, interactive, *, time_keeper, keepdb=False, debug_sql=False, parallel=0, aliases=None, **kwargs) +.. function:: setup_databases(verbosity, interactive, *, time_keeper=None, keepdb=False, debug_sql=False, parallel=0, aliases=None, **kwargs) Creates the test databases. |
