From 80dfe69ddf2818d82da0eeac62e9d0500d47367f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 1 Jun 2007 17:06:06 +0000 Subject: [PATCH] Small rewording of docs/testing.txt changes from [5380] git-svn-id: http://code.djangoproject.com/svn/django/trunk@5414 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/testing.txt | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/testing.txt b/docs/testing.txt index dedb1e15a8..50c4ec3046 100644 --- a/docs/testing.txt +++ b/docs/testing.txt @@ -571,13 +571,11 @@ database settings will the same as they would be for the project normally. If you wish to use a name other than the default for the test database, you can use the ``TEST_DATABASE_NAME`` setting to provide a name. - -**New in Django development version:** If you wish to have fine-grained -control over the character set encoding used in your database, you can control -this with the ``TEST_DATABASE_CHARSET`` setting. For MySQL users, you can also -control the particular collation used by the test database with the -``TEST_DATABASE_COLLATION`` setting. Refer to the settings_ documentation for -details of these advanced settings. +**New in Django development version:** For fine-grained control over the +character encoding of your database, use the ``TEST_DATABASE_CHARSET`` setting. +If you're using MySQL, you can also use the ``TEST_DATABASE_COLLATION`` setting +to control the particular collation used by the test database. See the +settings_ documentation for details of these advanced settings. .. _settings: ../settings/