diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-09-16 10:49:27 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2007-09-16 10:49:27 +0000 |
| commit | e988aa39894f0ac8ac30cb3a35d785f087dc0dfd (patch) | |
| tree | c14e1d1be7d0df2b066dd33af02fcf5ac0041d8c | |
| parent | 7a6e9f763377eb7cba4bad4912f8c5049a5d7c9d (diff) | |
Fixed a typo. I think I should get full marks for getting all the letters right, but some people insist they should be in the right order, too.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6355 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | tests/modeltests/fixtures/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/modeltests/fixtures/models.py b/tests/modeltests/fixtures/models.py index def912391f..5b53115733 100644 --- a/tests/modeltests/fixtures/models.py +++ b/tests/modeltests/fixtures/models.py @@ -56,8 +56,8 @@ __test__ = {'API_TESTS': """ [<Article: XML identified as leading cause of cancer>, <Article: Django conquers world!>, <Article: Copyright is fine the way it is>, <Article: Poker on TV is great!>, <Article: Python program becomes self aware>] """} -# Database flushing does not work on MySQL with the default storage engine, -# because it requires transaction spuport. +# Database flushing does not work on MySQL with the default storage engine +# because it requires transaction support. if settings.DATABASE_ENGINE not in ('mysql', 'mysql_old'): __test__['API_TESTS'] += \ """ |
