From 116d2098f61cff44596175b5d8b9d8d0d4005a0e Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 27 Dec 2014 19:49:16 -0500 Subject: [PATCH] [1.6.x] Fixed #24056 -- Fixed syntax highlighting in topics/testing/tools.txt. Backport of 3d0c3a0482496fc1914a40ec3c3eb70e67f0d643 from master --- docs/topics/testing/tools.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt index 7d9b92615a..f842785437 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -880,7 +880,8 @@ attribute:: from django.test.client import Client class MyTestClient(Client): - # Specialized methods for your environment... + # Specialized methods for your environment + ... class MyTest(TestCase): client_class = MyTestClient