flow_count() -> len(flows)

This commit is contained in:
Maximilian Hils 2017-02-09 16:44:27 +01:00
parent 1084588103
commit da8444b11f

View File

@ -1007,8 +1007,8 @@ class TestUpstreamProxySSL(
req = p.request("get:'/p/418'")
assert req.status_code == 418
assert self.chain[0].tmaster.state.flow_count() == 0
assert self.chain[1].tmaster.state.flow_count() == 1
assert len(self.chain[0].tmaster.state.flows) == 0
assert len(self.chain[1].tmaster.state.flows) == 1
class UpstreamProxyChanger: