summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/tools.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index ae26523980..3dff71c13f 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -870,7 +870,8 @@ attribute::
from django.test import TestCase, Client
class MyTestClient(Client):
- # Specialized methods for your environment...
+ # Specialized methods for your environment
+ ...
class MyTest(TestCase):
client_class = MyTestClient