From 3d0c3a0482496fc1914a40ec3c3eb70e67f0d643 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 27 Dec 2014 19:49:16 -0500 Subject: [PATCH] Fixed #24056 -- Fixed syntax highlighting in topics/testing/tools.txt. --- 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 69649d7a2e..d1e06704f2 100644 --- a/docs/topics/testing/tools.txt +++ b/docs/topics/testing/tools.txt @@ -953,7 +953,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