diff options
Diffstat (limited to 'test/test_dump.py')
-rw-r--r-- | test/test_dump.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_dump.py b/test/test_dump.py index 9d177ea0..56d3edd2 100644 --- a/test/test_dump.py +++ b/test/test_dump.py @@ -40,13 +40,13 @@ def test_strfuncs(): flow.client_conn.address.host = "foo" flow.response = netlib.tutils.tresp(body=CONTENT_MISSING) flow.response.is_replay = True - flow.response.code = 300 + flow.response.status_code = 300 m.echo_flow(flow) flow = tutils.tflow(resp=netlib.tutils.tresp(body="{")) flow.response.headers["content-type"] = "application/json" - flow.response.code = 400 + flow.response.status_code = 400 m.echo_flow(flow) |