summaryrefslogtreecommitdiff
path: root/tests/regressiontests/admin_scripts/tests.py
diff options
context:
space:
mode:
authorMarc Garcia <garcia.marc@gmail.com>2009-06-07 00:30:56 +0000
committerMarc Garcia <garcia.marc@gmail.com>2009-06-07 00:30:56 +0000
commitf973c57aaac3e918ac0234acbbbc86834ccfca86 (patch)
treedcffd814d5881868ac72c01cabc220c4c4995ccb /tests/regressiontests/admin_scripts/tests.py
parent3860c69bad92e4a514b1d10426445a00f3e9239a (diff)
Merged up to trunk r10934
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/i18n-improvements@10935 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_scripts/tests.py')
-rw-r--r--tests/regressiontests/admin_scripts/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_scripts/tests.py b/tests/regressiontests/admin_scripts/tests.py
index 0e28a9749f..e67126e9a7 100644
--- a/tests/regressiontests/admin_scripts/tests.py
+++ b/tests/regressiontests/admin_scripts/tests.py
@@ -536,7 +536,7 @@ class DjangoAdminSettingsDirectory(AdminScriptTestCase):
args = ['startapp','settings_test']
out, err = self.run_django_admin(args,'settings')
self.assertNoOutput(err)
- self.assertTrue(os.path.exists(os.path.join(test_dir, 'settings_test')))
+ self.assert_(os.path.exists(os.path.join(test_dir, 'settings_test')))
shutil.rmtree(os.path.join(test_dir, 'settings_test'))
def test_builtin_command(self):