Skip to content

Commit 5a52393

Browse files
committed
Changed status code in test_arbitrary_status_code.
1 parent ccb7171 commit 5a52393

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test_responses.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,9 @@ def test_arbitrary_status_code():
396396
@responses.activate
397397
def run():
398398
url = "http://example.com/"
399-
responses.add(responses.GET, url, body="test", status=418)
399+
responses.add(responses.GET, url, body="test", status=419)
400400
resp = requests.get(url)
401-
assert resp.status_code == 418
401+
assert resp.status_code == 419
402402
assert resp.reason is None
403403

404404
run()

0 commit comments

Comments
 (0)