summaryrefslogtreecommitdiff
path: root/cli/tests/unit
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-02-09 15:31:46 +0000
committerGitHub <noreply@github.com>2021-02-09 16:31:46 +0100
commit900953a65a7cb54eb8d11eba4a30e52da7dbb469 (patch)
tree7ca5b7b8261ffd92c945c618ac8bf9eaf15f5ceb /cli/tests/unit
parent47b3e4bada01f29a6cf2a143b94d772242bbab67 (diff)
fix(op_crates): Don't use `Deno.inspect` in op crates (#9332)
Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Diffstat (limited to 'cli/tests/unit')
-rw-r--r--cli/tests/unit/event_test.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/tests/unit/event_test.ts b/cli/tests/unit/event_test.ts
index a2a6c6e3d..149509c9d 100644
--- a/cli/tests/unit/event_test.ts
+++ b/cli/tests/unit/event_test.ts
@@ -124,9 +124,6 @@ unitTest(function eventInspectOutput(): void {
];
for (const [event, outputProvider] of cases) {
- assertEquals(
- event[Symbol.for("Deno.customInspect")](),
- outputProvider(event),
- );
+ assertEquals(Deno.inspect(event), outputProvider(event));
}
});