summaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authoruki00a <uki00a@gmail.com>2020-06-01 05:04:19 +0900
committerGitHub <noreply@github.com>2020-05-31 16:04:19 -0400
commit0ce6394acabdf75bc1d80a399be7ec8e1e08bd49 (patch)
tree78c4716d18de0b1618d5ad8acb7a742f5e1d1f31 /std
parentd89692161ab60c8037d046b0b1cbea7a24864079 (diff)
re-enable the "HugeLines" test case (#6006)
Diffstat (limited to 'std')
-rw-r--r--std/encoding/csv_test.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/std/encoding/csv_test.ts b/std/encoding/csv_test.ts
index b3d4ec0c9..60d43e35e 100644
--- a/std/encoding/csv_test.ts
+++ b/std/encoding/csv_test.ts
@@ -385,7 +385,6 @@ x,,,
"#ignore\n".repeat(10000) + "@".repeat(5000) + "," + "*".repeat(5000),
Output: [["@".repeat(5000), "*".repeat(5000)]],
Comment: "#",
- ignore: true, // TODO(#4521)
},
{
Name: "QuoteWithTrailingCRLF",
@@ -455,7 +454,6 @@ x,,,
];
for (const t of testCases) {
Deno.test({
- ignore: !!t.ignore,
name: `[CSV] ${t.Name}`,
async fn(): Promise<void> {
let comma = ",";