diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2018-01-05 22:46:23 +0100 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2018-01-06 10:43:47 +0100 |
commit | 9aae3213b9ebaa1ba1d23790fe4ccc5e03140cf4 (patch) | |
tree | 379958ce0ade47f6c706c1b9d83dd179d2bb08c9 /test/mitmproxy/proxy/test_server.py | |
parent | 1c769b0991d92abd56a098eb869d414f5fa6b5d9 (diff) | |
download | mitmproxy-9aae3213b9ebaa1ba1d23790fe4ccc5e03140cf4.tar.gz mitmproxy-9aae3213b9ebaa1ba1d23790fe4ccc5e03140cf4.tar.bz2 mitmproxy-9aae3213b9ebaa1ba1d23790fe4ccc5e03140cf4.zip |
rename TLS/SSL-related attributes
SSL is an outdated protocol superseeded by TLS. Although the commonly
used library is called OpenSSL, it is no reason to still use outdated
language for attributes.
Diffstat (limited to 'test/mitmproxy/proxy/test_server.py')
-rw-r--r-- | test/mitmproxy/proxy/test_server.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/mitmproxy/proxy/test_server.py b/test/mitmproxy/proxy/test_server.py index 8dce9bcd..802054af 100644 --- a/test/mitmproxy/proxy/test_server.py +++ b/test/mitmproxy/proxy/test_server.py @@ -709,7 +709,7 @@ class TestProxy(tservers.HTTPProxyTest): first_flow = self.master.state.flows[0] second_flow = self.master.state.flows[1] assert first_flow.server_conn.timestamp_tcp_setup - assert first_flow.server_conn.timestamp_ssl_setup is None + assert first_flow.server_conn.timestamp_tls_setup is None assert second_flow.server_conn.timestamp_tcp_setup assert first_flow.server_conn.timestamp_tcp_setup == second_flow.server_conn.timestamp_tcp_setup @@ -728,7 +728,7 @@ class TestProxySSL(tservers.HTTPProxyTest): f = self.pathod("304:b@10k") assert f.status_code == 304 first_flow = self.master.state.flows[0] - assert first_flow.server_conn.timestamp_ssl_setup + assert first_flow.server_conn.timestamp_tls_setup def test_via(self): # tests that the ssl timestamp is present when ssl is used |