Commit e41647a5 authored by Jannis Leidel's avatar Jannis Leidel
Browse files

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
parent 7019123d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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)