Fixed incompatibility (usage of class decorator) with Python 2.5 introduced in [16386]. Thanks ojii for the report via IRC.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16388 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
14bac2b97d
commit
5112acbf8f
|
@ -519,11 +519,11 @@ class SessionEngineTests(TestCase):
|
|||
self.assertEqual(response.context['user'].username, 'testclient')
|
||||
|
||||
|
||||
# Remove the 'session' contrib app from INSTALLED_APPS
|
||||
@override_settings(INSTALLED_APPS=tuple(filter(lambda a: a!='django.contrib.sessions', settings.INSTALLED_APPS)))
|
||||
class NoSessionsAppInstalled(SessionEngineTests):
|
||||
"""#7836 - Test client can exercise sessions even when 'django.contrib.sessions' isn't installed."""
|
||||
|
||||
# Remove the 'session' contrib app from INSTALLED_APPS
|
||||
@override_settings(INSTALLED_APPS=tuple(filter(lambda a: a!='django.contrib.sessions', settings.INSTALLED_APPS)))
|
||||
def test_session(self):
|
||||
# This request sets a session variable.
|
||||
response = self.client.get('/test_client_regress/set_session/')
|
||||
|
|
Loading…
Reference in New Issue