diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-10-27 07:58:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 16:58:27 +0200 |
commit | 115cc1e6ae00cfd9283c1549060892e0c00dcbc4 (patch) | |
tree | 695d3d5715439796c48780df49039f1803d6aae3 /cli/tests | |
parent | 02187966c108fd50354c8de57bab443a5b262373 (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.ts | 2 |
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(), ); }); |