Delete unnecessary console.log in test code (#2368)

This commit is contained in:
JaePil Jung 2019-05-17 15:49:20 +09:00 committed by Ryan Dahl
parent 3ff240b963
commit c3a30dd3c3
1 changed files with 0 additions and 2 deletions

View File

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