From 98f3b2ad033e162ee4dca0adecdd03e46a2e7ef1 Mon Sep 17 00:00:00 2001 From: Karl Hobley Date: Thu, 12 Feb 2015 12:45:38 +0000 Subject: [PATCH] Fixed spelling mistake --- wagtail/wagtaildocs/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wagtail/wagtaildocs/tests.py b/wagtail/wagtaildocs/tests.py index 36479c5d0..0bfe6d6c4 100644 --- a/wagtail/wagtaildocs/tests.py +++ b/wagtail/wagtaildocs/tests.py @@ -551,7 +551,7 @@ class TestServeView(TestCase): self.assertEqual(mock_handler.call_count, 1) self.assertEqual(mock_handler.mock_calls[0][2]['sender'], self.document) - def test_with_nonexistant_document(self): + def test_with_nonexistent_document(self): response = self.client.get(reverse('wagtaildocs_serve', args=(1000, 'blahblahblah', ))) self.assertEqual(response.status_code, 404)