diff options
Diffstat (limited to 'tools/http_benchmark.py')
-rwxr-xr-x | tools/http_benchmark.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/http_benchmark.py b/tools/http_benchmark.py index b90004396..a039484b7 100755 --- a/tools/http_benchmark.py +++ b/tools/http_benchmark.py @@ -33,11 +33,7 @@ def http_benchmark(deno_exe, hyper_hello_exe): node_rps = node_http_benchmark() hyper_http_rps = hyper_http_benchmark(hyper_hello_exe) - return { - "deno": deno_rps, - "node": node_rps, - "hyper": hyper_http_rps - } + return {"deno": deno_rps, "node": node_rps, "hyper": hyper_http_rps} def run(server_cmd): |