diff options
author | Kyra <kyradiscord@gmail.com> | 2018-10-21 17:07:29 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-21 08:07:29 -0700 |
commit | fbb3f05b6ffd9d132cb643c831867b272b95dc0e (patch) | |
tree | b414c6af5792a5d9768320dd40074e4febf12d57 /tools/http_benchmark.py | |
parent | 86409eb8369107a4c4944d3db0090ffc79395823 (diff) |
Add URLSearchParams (#1049)
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): |