diff options
Diffstat (limited to 'cli/js/tests/console_test.ts')
-rw-r--r-- | cli/js/tests/console_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tests/console_test.ts b/cli/js/tests/console_test.ts index 4a227aafe..264987ba9 100644 --- a/cli/js/tests/console_test.ts +++ b/cli/js/tests/console_test.ts @@ -8,12 +8,12 @@ const { // eslint-disable-next-line @typescript-eslint/no-explicit-any } = Deno as any; -const customInspect = Deno.symbols.customInspect; +const customInspect = Deno.customInspect; const { Console, stringifyArgs, // @ts-ignore TypeScript (as of 3.7) does not support indexing namespaces by symbol -} = Deno[Deno.symbols.internal]; +} = Deno[Deno.internal]; function stringify(...args: unknown[]): string { return stringifyArgs(args).replace(/\n$/, ""); |