aboutsummaryrefslogtreecommitdiffstats
path: root/test/http/test_semantics.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/http/test_semantics.py')
-rw-r--r--test/http/test_semantics.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/http/test_semantics.py b/test/http/test_semantics.py
index 22fe992c..6dcbbe07 100644
--- a/test/http/test_semantics.py
+++ b/test/http/test_semantics.py
@@ -547,7 +547,7 @@ class TestHeaders(object):
def test_get_all(self):
headers = self._2host()
assert headers.get_all("host") == ["example.com", "example.org"]
- assert headers.get_all("accept", 42) is 42
+ assert headers.get_all("accept") == []
def test_set_all(self):
headers = semantics.Headers(Host="example.com")