diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-02-15 14:48:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-15 14:48:47 +0100 |
commit | 8c6d147e6ae40a1f92aba1aedc0d95ef437dd4ba (patch) | |
tree | fbb59c9a6b294fd242854480067ae50cfb61fba7 /cli/bench/main.rs | |
parent | 1afe6b48e0bfee44f37206eb0fc03ea6ae37ad4d (diff) |
chore: Reorganise workers tests (#9493)
Diffstat (limited to 'cli/bench/main.rs')
-rw-r--r-- | cli/bench/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/bench/main.rs b/cli/bench/main.rs index d2823a02b..b69bbc7ac 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -55,7 +55,7 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option<i32>)] = &[ ), ( "workers_startup", - &["run", "--allow-read", "cli/tests/workers_startup_bench.ts"], + &["run", "--allow-read", "cli/tests/workers/bench_startup.ts"], None, ), ( @@ -63,7 +63,7 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option<i32>)] = &[ &[ "run", "--allow-read", - "cli/tests/workers_round_robin_bench.ts", + "cli/tests/workers/bench_round_robin.ts", ], None, ), |