summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGary Wilson Jr <gary.wilson@gmail.com>2007-10-30 23:00:57 +0000
committerGary Wilson Jr <gary.wilson@gmail.com>2007-10-30 23:00:57 +0000
commit0709c2304684c0f1a2e85e5220ae16a232175113 (patch)
treece8f608625e22004c6208ab11292261600948fdd /docs
parent9a30ed5cd5e5a3c8a3b80b7b4d698533aa9cab0d (diff)
Fixed #5832 -- Removed unneeded import in testing documentation, thanks Thomas Güttler.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6632 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/testing.txt1
1 files changed, 0 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index 04c999cda8..7705380eff 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -721,7 +721,6 @@ This means, instead of instantiating a ``Client`` in each test::
...you can just refer to ``self.client``, like so::
from django.test import TestCase
- from django.test.client import Client
class SimpleTest(TestCase):
def test_details(self):