1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-28 01:59:06 -05:00

remove console.log in tests (denoland/deno_std#578)

Original: f7f96e9baa
This commit is contained in:
迷渡 2019-09-03 15:08:56 +08:00 committed by Ryan Dahl
parent 9382f38c7c
commit dd6db011e3

View file

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