mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
deactivate flaky copy assertion (denoland/deno_std#467)
Original: 9b72d580ca
This commit is contained in:
parent
50a79584cb
commit
a0ce25e606
1 changed files with 4 additions and 2 deletions
|
@ -346,8 +346,10 @@ testCopySync(
|
||||||
|
|
||||||
assert(typeof destStatInfo.accessed === "number");
|
assert(typeof destStatInfo.accessed === "number");
|
||||||
assert(typeof destStatInfo.modified === "number");
|
assert(typeof destStatInfo.modified === "number");
|
||||||
assertEquals(destStatInfo.accessed, srcStatInfo.accessed);
|
// TODO: Activate test when https://github.com/denoland/deno/issues/2411
|
||||||
assertEquals(destStatInfo.modified, srcStatInfo.modified);
|
// is fixed
|
||||||
|
// assertEquals(destStatInfo.accessed, srcStatInfo.accessed);
|
||||||
|
// assertEquals(destStatInfo.modified, srcStatInfo.modified);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue