Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

Commit

Permalink
Avoid stupid test failures.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasa committed Feb 22, 2015
1 parent 714b2c9 commit b44b699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_abusing_nghttp2_org(self):
assert text_data
assert all(map(lambda r: r.status == 200, responses))
assert all(map(lambda p: p.scheme == 'https', pushes))
assert all(map(lambda p: p.method == 'get', pushes))
assert all(map(lambda p: p.method.lower() == 'get', pushes))

def test_hitting_twitter(self):
"""
Expand Down

0 comments on commit b44b699

Please sign in to comment.