mirror of https://github.com/django/django.git
Fixed a SyntaxError in the middleware tests introduced in r17471.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17488 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7019123d21
commit
e41647a522
|
@ -584,7 +584,6 @@ class GZipMiddlewareTest(TestCase):
|
|||
self.assertEqual(r.get('Content-Encoding'), None)
|
||||
|
||||
|
||||
@override_settings(USE_ETAGS=True)
|
||||
class ETagGZipMiddlewareTest(TestCase):
|
||||
"""
|
||||
Tests if the ETag middleware behaves correctly with GZip middleware.
|
||||
|
@ -611,3 +610,6 @@ class ETagGZipMiddlewareTest(TestCase):
|
|||
nogzip_etag = response.get('ETag')
|
||||
|
||||
self.assertNotEqual(gzip_etag, nogzip_etag)
|
||||
ETagGZipMiddlewareTest = override_settings(
|
||||
USE_ETAGS=True,
|
||||
)(ETagGZipMiddlewareTest)
|
||||
|
|
Loading…
Reference in New Issue