Skip to content

Commit

Permalink
bench: fix ops benchmarks (denoland#20830)
Browse files Browse the repository at this point in the history
denoland#20808 broke benchmarks, this
commit should fix it.
  • Loading branch information
bartlomieju committed Oct 8, 2023
1 parent 6cb5d8e commit 8706a20
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions bench_util/benches/op_baseline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@ use deno_bench_util::bencher::Bencher;
use deno_core::op2;
use deno_core::Extension;

deno_core::extension!(
bench_setup,
ops = [
// op_pi_json,
op_pi_async,
op_nop
]
);
deno_core::extension!(bench_setup, ops = [op_pi_json, op_pi_async, op_nop]);

fn setup() -> Vec<Extension> {
vec![bench_setup::init_ops()]
Expand Down

0 comments on commit 8706a20

Please sign in to comment.