diff options
author | 迷渡 <justjavac@gmail.com> | 2019-09-03 15:08:56 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-03 03:08:56 -0400 |
commit | dd6db011e3a93f508f49ce1de84962a4ca23c587 (patch) | |
tree | 1ecd0d1bfc2ed71770d05b1b66169aefd4480df7 | |
parent | 9382f38c7c43698e95f61e1394217480f4df46ad (diff) |
remove `console.log` in tests (denoland/deno_std#578)
Original: https://github.com/denoland/deno_std/commit/f7f96e9baac8e2a38ed91b7a835fac5acda15dbb
-rwxr-xr-x | flags/dotted_test.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/flags/dotted_test.ts b/flags/dotted_test.ts index e5c69ce6d..3ec7409e7 100755 --- a/flags/dotted_test.ts +++ b/flags/dotted_test.ts @@ -8,7 +8,6 @@ test(function dottedAlias(): void { default: { "a.b": 11 }, alias: { "a.b": "aa.bb" } }); - console.log(argv.a); assertEquals(argv.a.b, 22); assertEquals(argv.aa.bb, 22); }); |