aboutsummaryrefslogtreecommitdiffstats
path: root/test/bench/benchmark.py
diff options
context:
space:
mode:
authorMatías Lang <yo@matiaslang.me>2019-01-13 23:55:27 -0300
committerMatías Lang <yo@matiaslang.me>2019-01-13 23:55:27 -0300
commite6da62a50adef20dfd05d89d9571dcaf433f94a3 (patch)
treee82ead634d698c8170bc4c78c85035b8708ff9a8 /test/bench/benchmark.py
parent674f92a7c164c538047c970fc42194211856276a (diff)
parent82bc8c7ca2b946e7f022b92ab16ced2924feb284 (diff)
downloadmitmproxy-e6da62a50adef20dfd05d89d9571dcaf433f94a3.tar.gz
mitmproxy-e6da62a50adef20dfd05d89d9571dcaf433f94a3.tar.bz2
mitmproxy-e6da62a50adef20dfd05d89d9571dcaf433f94a3.zip
Merge branch 'master' of https://github.com/mitmproxy/mitmproxy
Diffstat (limited to 'test/bench/benchmark.py')
-rw-r--r--test/bench/benchmark.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bench/benchmark.py b/test/bench/benchmark.py
index 84ec6005..076ad6c9 100644
--- a/test/bench/benchmark.py
+++ b/test/bench/benchmark.py
@@ -31,7 +31,8 @@ class Benchmark:
stdout=asyncio.subprocess.PIPE
)
stdout, _ = await traf.communicate()
- open(ctx.options.benchmark_save_path + ".bench", mode="wb").write(stdout)
+ with open(ctx.options.benchmark_save_path + ".bench", mode="wb") as f:
+ f.write(stdout)
ctx.log.error("Proxy saw %s requests, %s responses" % (self.reqs, self.resps))
ctx.log.error(stdout.decode("ascii"))
backend.kill()