From c3a30dd3c3ecf476ed01a2fbb7c7130e17b98340 Mon Sep 17 00:00:00 2001 From: JaePil Jung Date: Fri, 17 May 2019 15:49:20 +0900 Subject: Delete unnecessary console.log in test code (#2368) --- js/link_test.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'js') 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"); }); -- cgit v1.2.3