From a3529d02329e0d2127ad2a5bb78b4c476ddd6984 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 23 Mar 2023 10:01:07 -0400 Subject: refactor(ext/node): Use Deno.inspect (#17960) No need for two almost identical implementations of the same thing --------- Co-authored-by: Yoshiya Hinosawa Co-authored-by: Aapo Alasuutari --- cli/tests/unit_node/util_test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/unit_node') diff --git a/cli/tests/unit_node/util_test.ts b/cli/tests/unit_node/util_test.ts index 81794c856..44b20299e 100644 --- a/cli/tests/unit_node/util_test.ts +++ b/cli/tests/unit_node/util_test.ts @@ -12,7 +12,7 @@ import * as util from "node:util"; Deno.test({ name: "[util] format", fn() { - assertEquals(util.format("%o", [10, 11]), "[ 10, 11, [length]: 2 ]"); + assertEquals(util.format("%o", [10, 11]), "[ 10, 11 ]"); }, }); -- cgit v1.2.3