mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
Delete unnecessary console.log in test code (#2368)
This commit is contained in:
parent
3ff240b963
commit
c3a30dd3c3
1 changed files with 0 additions and 2 deletions
|
@ -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");
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue