summaryrefslogtreecommitdiff
path: root/cli/tests
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2022-10-27 07:58:27 -0700
committerGitHub <noreply@github.com>2022-10-27 16:58:27 +0200
commit115cc1e6ae00cfd9283c1549060892e0c00dcbc4 (patch)
tree695d3d5715439796c48780df49039f1803d6aae3 /cli/tests
parent02187966c108fd50354c8de57bab443a5b262373 (diff)
Revert "perf(core): generate inlined wrappers for async ops (#16428)" (#16443)
Diffstat (limited to 'cli/tests')
-rw-r--r--cli/tests/unit/metrics_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/unit/metrics_test.ts b/cli/tests/unit/metrics_test.ts
index 7f78d4578..82ff7ddd0 100644
--- a/cli/tests/unit/metrics_test.ts
+++ b/cli/tests/unit/metrics_test.ts
@@ -84,6 +84,6 @@ Deno.test(function opNamesMatch() {
// @ts-ignore: Deno.core allowed
Deno.core.opNames().sort(),
// @ts-ignore: Deno.core allowed
- Object.keys(Deno.core.ops).sort().filter((name) => name !== "asyncOpsInfo"),
+ Object.keys(Deno.core.ops).sort(),
);
});