From 0d6651666534d313d143604ac914ec8157570963 Mon Sep 17 00:00:00 2001 From: Geoff Brown Date: Mon, 7 Feb 2022 15:43:58 -0700 Subject: [PATCH] Fix lint error --- tests/test_views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_views.py b/tests/test_views.py index ed8f67d..6f28e52 100644 --- a/tests/test_views.py +++ b/tests/test_views.py @@ -68,7 +68,8 @@ async def test_redirects_strip_leading_slashes(cli): # also strip leading and trailing whitespace resp = await check_response(cli, "/%0a/www.evil.com/", status=302, allow_redirects=False) assert resp.headers['Location'] == "/www.evil.com" - resp = await check_response(cli, "/%0a /www.evil.com %0a%0b/", status=302, allow_redirects=False) + resp = await check_response(cli, "/%0a /www.evil.com %0a%0b/", status=302, + allow_redirects=False) assert resp.headers['Location'] == "/www.evil.com"