diff options
author | JaePil Jung <jjp5023@gmail.com> | 2019-05-17 15:49:20 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-17 02:49:20 -0400 |
commit | c3a30dd3c3ecf476ed01a2fbb7c7130e17b98340 (patch) | |
tree | d20f553328aa3dd6ac31fd6cc7a066784287af60 /js/link_test.ts | |
parent | 3ff240b963de8422e6c2567572dbc551aafb0797 (diff) |
Delete unnecessary console.log in test code (#2368)
Diffstat (limited to 'js/link_test.ts')
-rw-r--r-- | js/link_test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/js/link_test.ts b/js/link_test.ts index d6b5f0a33..86e466abf 100644 --- a/js/link_test.ts +++ b/js/link_test.ts @@ -43,7 +43,6 @@ testPerm({ read: true, write: true }, function linkSyncExists(): void { err = e; } assert(!!err); - console.log(err); assertEquals(err.kind, Deno.ErrorKind.AlreadyExists); assertEquals(err.name, "AlreadyExists"); }); @@ -60,7 +59,6 @@ testPerm({ read: true, write: true }, function linkSyncNotFound(): void { err = e; } assert(!!err); - console.log(err); assertEquals(err.kind, Deno.ErrorKind.NotFound); assertEquals(err.name, "NotFound"); }); |