diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-12-05 01:03:39 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-12-05 01:03:39 +0000 |
| commit | d53fd71acb7a6bcce376152a794a533364655bf4 (patch) | |
| tree | 774b3076ac78bf8854df05da5310e15504bf550a /docs/topics | |
| parent | b11c21d69a2d16aa104cb1313691aa5c5efc2468 (diff) | |
Corrected incomplete and incorrect docs from r14822.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14823 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/testing.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index e56e577f3b..d1fda1d6a6 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -473,22 +473,22 @@ can specify the dependencies that exist using the DATABASES = { 'default': { # ... db settings - TEST_DEPENDENCIES = ['diamonds'] + 'TEST_DEPENDENCIES': ['diamonds'] }, 'diamonds': { # ... db settings - } + }, 'clubs': { # ... db settings - TEST_DEPENDENCIES = ['diamonds'] - } + 'TEST_DEPENDENCIES': ['diamonds'] + }, 'spades': { # ... db settings - TEST_DEPENDENCIES = ['diamonds','hearts'] - } + 'TEST_DEPENDENCIES': ['diamonds','hearts'] + }, 'hearts': { # ... db settings - TEST_DEPENDENCIES = ['diamonds','clubs'] + 'TEST_DEPENDENCIES': ['diamonds','clubs'] } } |
