summaryrefslogtreecommitdiff
path: root/tests/apps
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-08-17 09:01:59 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:09 -0400
commit3af9b70028487be81c4f6ca65ca0d1f2be337e4f (patch)
tree09424e030aad263740bd264f421b34a154ecab7c /tests/apps
parent57039f9661d2fc06618bba1ed60d005212ee26e3 (diff)
downloaddjango-3af9b70028487be81c4f6ca65ca0d1f2be337e4f.tar.gz
Refs #22789 -- Removed contrib.webdesign per deprecation timeline.
Diffstat (limited to 'tests/apps')
-rw-r--r--tests/apps/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/apps/tests.py b/tests/apps/tests.py
index 9e34773a77..c226bf5010 100644
--- a/tests/apps/tests.py
+++ b/tests/apps/tests.py
@@ -118,7 +118,7 @@ class AppsTests(SimpleTestCase):
self.assertEqual(app_config.name, 'django.contrib.staticfiles')
with self.assertRaises(LookupError):
- apps.get_app_config('webdesign')
+ apps.get_app_config('admindocs')
msg = "No installed app with label 'django.contrib.auth'. Did you mean 'myauth'"
with self.assertRaisesMessage(LookupError, msg):
@@ -132,7 +132,7 @@ class AppsTests(SimpleTestCase):
self.assertTrue(apps.is_installed('django.contrib.admin'))
self.assertTrue(apps.is_installed('django.contrib.auth'))
self.assertTrue(apps.is_installed('django.contrib.staticfiles'))
- self.assertFalse(apps.is_installed('django.contrib.webdesign'))
+ self.assertFalse(apps.is_installed('django.contrib.admindocs'))
@override_settings(INSTALLED_APPS=SOME_INSTALLED_APPS)
def test_get_model(self):