From 0ccbb5356ab77ba33750982e7ac3963e5d1c314f Mon Sep 17 00:00:00 2001 From: Timo Graham Date: Sun, 5 Feb 2012 15:53:09 +0000 Subject: [PATCH] Fixed #17571 - Fixed documentation of skipUnlessDBFeature; thanks EnTeQuAk for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17459 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index f7c906b3e6..a9c8635024 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -1818,7 +1818,7 @@ it would under MySQL with MyISAM tables):: Skip the decorated test if the named database feature is *not* supported. -For example, the following test will not be executed if the database +For example, the following test will only be executed if the database supports transactions (e.g., it would run under PostgreSQL, but *not* under MySQL with MyISAM tables)::