summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-07-27 08:35:21 -0400
committerTim Graham <timograham@gmail.com>2015-07-27 10:32:47 -0400
commit87d55081ea398c65b2503d22ed3907a9175ec729 (patch)
tree56fd18ad847033f670db7847a4f549c750ef2b24 /docs/topics/testing
parent29465d438e00660221e1e0ac5e2929a719c56113 (diff)
Fixed #25159 -- Removed brackets from class/function/method signatures in docs.
Thanks hellbeast for the initial patch.
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/advanced.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 93583893a9..7dab6aaf88 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -570,7 +570,7 @@ django.db.connection.creation
The creation module of the database backend also provides some utilities that
can be useful during testing.
-.. function:: create_test_db([verbosity=1, autoclobber=False, serialize=True, keepdb=False])
+.. function:: create_test_db(verbosity=1, autoclobber=False, serialize=True, keepdb=False)
Creates a new test database and runs ``migrate`` against it.
@@ -612,7 +612,7 @@ can be useful during testing.
The ``keepdb`` argument was added.
-.. function:: destroy_test_db(old_database_name, [verbosity=1, keepdb=False])
+.. function:: destroy_test_db(old_database_name, verbosity=1, keepdb=False)
Destroys the database whose name is the value of :setting:`NAME` in
:setting:`DATABASES`, and sets :setting:`NAME` to the value of