fix erroneous assert (#4608)

This commit is contained in:
dubiousjim 2020-04-03 13:49:05 -04:00 committed by GitHub
parent 6f9c78979d
commit a5fc505edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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> {