Skip to content

Commit

Permalink
s/allow_redirects/follow_redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
davehunt committed Feb 12, 2016
1 parent 303aa5c commit 6009365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/redirects/test_urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@pytest.mark.parametrize('url', EXTERNAL_URLS, ids=itemgetter('url'))
def test_external_url(url):
del url['location']
url['allow_redirects'] = True
url['follow_redirects'] = True
assert_valid_url(**url)


Expand Down Expand Up @@ -84,4 +84,4 @@ def test_x_robots_tag(base_url):
'/thunderbird/releases/'
])
def test_url(url, base_url):
assert_valid_url(url, base_url=base_url, allow_redirects=True)
assert_valid_url(url, base_url=base_url, follow_redirects=True)

0 comments on commit 6009365

Please sign in to comment.