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:
Ramiro Morales 2011-06-12 23:22:34 +00:00
parent 14bac2b97d
commit 5112acbf8f
1 changed files with 2 additions and 2 deletions

View File

@ -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/')