diff options
author | dubiousjim <dubiousjim@gmail.com> | 2020-04-03 13:49:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-03 13:49:05 -0400 |
commit | a5fc505edb0f22b987c28f19b1c621b0715897ce (patch) | |
tree | 24d518431375a50892d0608de8af609e1dd77643 /std/fs/walk_test.ts | |
parent | 6f9c78979d4d7de6d96f7ae651b2c2018fec6e5f (diff) |
fix erroneous assert (#4608)
Diffstat (limited to 'std/fs/walk_test.ts')
-rw-r--r-- | std/fs/walk_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fs/walk_test.ts b/std/fs/walk_test.ts index 57d3cf8ea..453e2c5c4 100644 --- a/std/fs/walk_test.ts +++ b/std/fs/walk_test.ts @@ -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> { |