From 424be52372616895b8d6516fde1974941de00f14 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Tue, 20 Apr 2010 12:20:14 +0000 Subject: [PATCH] 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 --- tests/regressiontests/admin_scripts/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/admin_scripts/tests.py b/tests/regressiontests/admin_scripts/tests.py index 77ed8d25cc..d8c8e1e7b2 100644 --- a/tests/regressiontests/admin_scripts/tests.py +++ b/tests/regressiontests/admin_scripts/tests.py @@ -967,7 +967,7 @@ class ManageValidate(AdminScriptTestCase): args = ['validate'] out, err = self.run_manage(args) 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): "manage.py validate reports an ImportError if an app's models.py raises one on import"