@@ -167,12 +167,12 @@ def assertNotInOutput(self, stream, msg):
167167##########################################################################
168168# DJANGO ADMIN TESTS
169169# This first series of test classes checks the environment processing
170- # of the django-admin.py script
170+ # of the django-admin.
171171##########################################################################
172172
173173
174174class DjangoAdminNoSettings (AdminScriptTestCase ):
175- "A series of tests for django-admin.py when there is no settings.py file."
175+ "A series of tests for django-admin when there is no settings.py file."
176176
177177 def test_builtin_command (self ):
178178 "no settings: django-admin builtin commands fail with an error when no settings provided"
@@ -207,7 +207,8 @@ def test_commands_with_invalid_settings(self):
207207
208208
209209class DjangoAdminDefaultSettings (AdminScriptTestCase ):
210- """A series of tests for django-admin.py when using a settings.py file that
210+ """
211+ A series of tests for django-admin when using a settings.py file that
211212 contains the test application.
212213 """
213214 def setUp (self ):
@@ -273,7 +274,8 @@ def test_custom_command_with_environment(self):
273274
274275
275276class DjangoAdminFullPathDefaultSettings (AdminScriptTestCase ):
276- """A series of tests for django-admin.py when using a settings.py file that
277+ """
278+ A series of tests for django-admin when using a settings.py file that
277279 contains the test application specified using a full path.
278280 """
279281 def setUp (self ):
@@ -340,7 +342,8 @@ def test_custom_command_with_environment(self):
340342
341343
342344class DjangoAdminMinimalSettings (AdminScriptTestCase ):
343- """A series of tests for django-admin.py when using a settings.py file that
345+ """
346+ A series of tests for django-admin when using a settings.py file that
344347 doesn't contain the test application.
345348 """
346349 def setUp (self ):
@@ -406,8 +409,9 @@ def test_custom_command_with_environment(self):
406409
407410
408411class DjangoAdminAlternateSettings (AdminScriptTestCase ):
409- """A series of tests for django-admin.py when using a settings file
410- with a name other than 'settings.py'.
412+ """
413+ A series of tests for django-admin when using a settings file with a name
414+ other than 'settings.py'.
411415 """
412416 def setUp (self ):
413417 super ().setUp ()
@@ -472,7 +476,8 @@ def test_custom_command_with_environment(self):
472476
473477
474478class DjangoAdminMultipleSettings (AdminScriptTestCase ):
475- """A series of tests for django-admin.py when multiple settings files
479+ """
480+ A series of tests for django-admin when multiple settings files
476481 (including the default 'settings.py') are available. The default settings
477482 file is insufficient for performing the operations described, so the
478483 alternate settings must be used by the running script.
@@ -541,7 +546,7 @@ def test_custom_command_with_environment(self):
541546
542547class DjangoAdminSettingsDirectory (AdminScriptTestCase ):
543548 """
544- A series of tests for django-admin.py when the settings file is in a
549+ A series of tests for django-admin when the settings file is in a
545550 directory. (see #9751).
546551 """
547552
0 commit comments