summaryrefslogtreecommitdiff
path: root/cli/js/tests
diff options
context:
space:
mode:
authorNayeem Rahman <muhammed.9939@gmail.com>2020-03-10 16:08:58 +0000
committerGitHub <noreply@github.com>2020-03-10 12:08:58 -0400
commit6443e4aed16868c17111a56634aa733211430f46 (patch)
tree8ecbe4d75592fcc78a147b4d69fb61530a0ca2f8 /cli/js/tests
parentfbc4731256a698c07d0d842575d3678d7dc58715 (diff)
refactor: Cleanup options object parameters (#4296)
Diffstat (limited to 'cli/js/tests')
-rw-r--r--cli/js/tests/console_test.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/tests/console_test.ts b/cli/js/tests/console_test.ts
index 34a61c25f..256c7da80 100644
--- a/cli/js/tests/console_test.ts
+++ b/cli/js/tests/console_test.ts
@@ -186,7 +186,7 @@ unitTest(function consoleTestStringifyWithDepth(): void {
);
assertEquals(stringifyArgs([nestedObj], { depth: 0 }), "[Object]");
assertEquals(
- stringifyArgs([nestedObj], { depth: null }),
+ stringifyArgs([nestedObj]),
"{ a: { b: { c: { d: [Object] } } } }"
);
// test inspect is working the same way