fix(op_crates): Don't use Deno.inspect in op crates (#9332)

Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
This commit is contained in:
Nayeem Rahman 2021-02-09 15:31:46 +00:00 committed by GitHub
parent 47b3e4bada
commit 900953a65a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 48 additions and 63 deletions

View file

@ -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));
}
});