From 2e24b71a650663f54c6603d471540d2281e7ecbe Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 31 Oct 2021 21:38:56 -0700 Subject: [PATCH] test,doc: correct documentation for runBenchmark() The function only takes two arguments. --- test/common/README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/common/README.md b/test/common/README.md index d7387cef7b298b..076cef2dd295c1 100644 --- a/test/common/README.md +++ b/test/common/README.md @@ -29,11 +29,9 @@ This directory contains modules used to test the Node.js implementation. The `benchmark` module is used by tests to run benchmarks. -### `runBenchmark(name, args, env)` +### `runBenchmark(name, env)` * `name` [\][] Name of benchmark suite to be run. -* `args` [\][] Array of environment variable key/value pairs (ex: - `n=1`) to be applied via `--set`. * `env` [\][] Environment variables to be applied during the run.