From 4dab2d2f6b6327965872608febe798cc88f668bf Mon Sep 17 00:00:00 2001 From: Paul McMillan Date: Thu, 22 Sep 2011 23:30:05 +0000 Subject: [PATCH] Fixed a typo in test docstring. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16894 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/modeltests/empty/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modeltests/empty/tests.py b/tests/modeltests/empty/tests.py index b3a8a72ad2..bff3a81e70 100644 --- a/tests/modeltests/empty/tests.py +++ b/tests/modeltests/empty/tests.py @@ -25,7 +25,7 @@ class NoModelTests(TestCase): Test for #7198 to ensure that the proper error message is raised when attempting to load an app with no models.py file. - Becuase the test runner won't currently load a test module with no + Because the test runner won't currently load a test module with no models.py file, this TestCase instead lives in this module. It seemed like an appropriate home for it.