Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[encoding] add csv parse #458

Merged
merged 11 commits into from
May 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
review
  • Loading branch information
zekth committed May 30, 2019
commit 7f90ed8d605b7e8fe6732198161ae6250b9f8010
6 changes: 2 additions & 4 deletions fs/copy_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,8 @@ testCopySync(

assert(typeof destStatInfo.accessed === "number");
assert(typeof destStatInfo.modified === "number");
// TODO: Activate test when https://github.com/denoland/deno/issues/2411
// is fixed
// assertEquals(destStatInfo.accessed, srcStatInfo.accessed);
// assertEquals(destStatInfo.modified, srcStatInfo.modified);
assertEquals(destStatInfo.accessed, srcStatInfo.accessed);
assertEquals(destStatInfo.modified, srcStatInfo.modified);
}
);

Expand Down