diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-04-25 15:53:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-25 10:53:26 -0400 |
commit | b33685e94bb8edbbaabd67a01bff429bf4e49168 (patch) | |
tree | 13a14746043442ff2fa8a66e4523943d0a025b9a /cli/js/tests/console_test.ts | |
parent | 0c47cd67850e4c195212c8edfcb3a62b8435ed3a (diff) |
fix(cli/js/symbols): Update symbol descriptions (#4878)
Don't use Symbol.for() to define Deno.symbols.customInspect.
Diffstat (limited to 'cli/js/tests/console_test.ts')
-rw-r--r-- | cli/js/tests/console_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/tests/console_test.ts b/cli/js/tests/console_test.ts index 88902f84b..43378e2ca 100644 --- a/cli/js/tests/console_test.ts +++ b/cli/js/tests/console_test.ts @@ -631,7 +631,7 @@ unitTest(function consoleTestWithCustomInspectorError(): void { assertEquals(stringify(new B({ a: "a" })), "a"); assertEquals( stringify(B.prototype), - "{ Symbol(Deno.customInspect): [Function: [Deno.customInspect]] }" + "{ Symbol(Deno.symbols.customInspect): [Function: [Deno.symbols.customInspect]] }" ); }); |