From 2f2d21fe5cc5d7a103d36c39704a0925a7be73bc Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Mon, 31 Mar 2014 07:01:13 -0400
Subject: [PATCH] [1.7.x] Fixed typo in docstring.

Backport of 029d77eaaa from master
---
 django/test/testcases.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/django/test/testcases.py b/django/test/testcases.py
index 5b5555bfce..83a588022d 100644
--- a/django/test/testcases.py
+++ b/django/test/testcases.py
@@ -254,7 +254,7 @@ class SimpleTestCase(unittest.TestCase):
 
         Note that assertRedirects won't work for external links since it uses
         TestClient to do a request (use fetch_redirect_response=False to check
-        such links without fetching thtem).
+        such links without fetching them).
         """
         if msg_prefix:
             msg_prefix += ": "