mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 23:34:47 -05:00
fix erroneous assert (#4608)
This commit is contained in:
parent
6f9c78979d
commit
a5fc505edb
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ testWalk(
|
|||
await symlink(d + "/b", d + "/a/bb");
|
||||
} catch (err) {
|
||||
assert(isWindows);
|
||||
assert(err.message, "Not implemented");
|
||||
assertEquals(err.message, "Not implemented");
|
||||
}
|
||||
},
|
||||
async function symlink(): Promise<void> {
|
||||
|
|
Loading…
Reference in a new issue