summaryrefslogtreecommitdiff
path: root/core/examples/http_bench_bin_ops.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/examples/http_bench_bin_ops.rs')
-rw-r--r--core/examples/http_bench_bin_ops.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/examples/http_bench_bin_ops.rs b/core/examples/http_bench_bin_ops.rs
index 513ac5b3a..bc92007b0 100644
--- a/core/examples/http_bench_bin_ops.rs
+++ b/core/examples/http_bench_bin_ops.rs
@@ -3,7 +3,6 @@
#[macro_use]
extern crate log;
-use deno_core::js_check;
use deno_core::BufVec;
use deno_core::JsRuntime;
use deno_core::Op;
@@ -263,7 +262,7 @@ fn main() {
.unwrap();
isolate.await
};
- js_check(runtime.block_on(future));
+ runtime.block_on(future).unwrap();
}
#[test]