Fixed #13382 -- Modified a message used for testing purposes to allow test passes under PyPy. Thanks to Alex Gaynor for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13003 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ea7df23395
commit
424be52372
|
@ -967,7 +967,7 @@ class ManageValidate(AdminScriptTestCase):
|
||||||
args = ['validate']
|
args = ['validate']
|
||||||
out, err = self.run_manage(args)
|
out, err = self.run_manage(args)
|
||||||
self.assertNoOutput(out)
|
self.assertNoOutput(out)
|
||||||
self.assertOutput(err, 'No module named admin_scriptz.broken_app')
|
self.assertOutput(err, 'No module named admin_scriptz')
|
||||||
|
|
||||||
def test_broken_app(self):
|
def test_broken_app(self):
|
||||||
"manage.py validate reports an ImportError if an app's models.py raises one on import"
|
"manage.py validate reports an ImportError if an app's models.py raises one on import"
|
||||||
|
|
Loading…
Reference in New Issue