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

Commit b44b699

Browse files
committed
Avoid stupid test failures.
1 parent 714b2c9 commit b44b699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_abusing_nghttp2_org(self):
5454
assert text_data
5555
assert all(map(lambda r: r.status == 200, responses))
5656
assert all(map(lambda p: p.scheme == 'https', pushes))
57-
assert all(map(lambda p: p.method == 'get', pushes))
57+
assert all(map(lambda p: p.method.lower() == 'get', pushes))
5858

5959
def test_hitting_twitter(self):
6060
"""

0 commit comments

Comments
 (0)