Skip to content

Commit

Permalink
Fixed #20166 - Corrected TEST_DEPENDENCIES example in testing docs.
Browse files Browse the repository at this point in the history
Thanks czambran.
  • Loading branch information
timgraham committed May 31, 2013
1 parent 646a221 commit f10e9af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/topics/testing/advanced.txt
Expand Up @@ -113,7 +113,8 @@ two databases.
Controlling creation order for test databases
---------------------------------------------

By default, Django will always create the ``default`` database first.
By default, Django will assume all databases depend on the ``default``
database and therefore always create the ``default`` database first.
However, no guarantees are made on the creation order of any other
databases in your test setup.

Expand All @@ -129,6 +130,7 @@ can specify the dependencies that exist using the
},
'diamonds': {
# ... db settings
'TEST_DEPENDENCIES': []
},
'clubs': {
# ... db settings
Expand Down

0 comments on commit f10e9af

Please sign in to comment.