re-enable the "HugeLines" test case (#6006)

This commit is contained in:
uki00a 2020-06-01 05:04:19 +09:00 committed by GitHub
parent d89692161a
commit 0ce6394aca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -385,7 +385,6 @@ x,,,
"#ignore\n".repeat(10000) + "@".repeat(5000) + "," + "*".repeat(5000), "#ignore\n".repeat(10000) + "@".repeat(5000) + "," + "*".repeat(5000),
Output: [["@".repeat(5000), "*".repeat(5000)]], Output: [["@".repeat(5000), "*".repeat(5000)]],
Comment: "#", Comment: "#",
ignore: true, // TODO(#4521)
}, },
{ {
Name: "QuoteWithTrailingCRLF", Name: "QuoteWithTrailingCRLF",
@ -455,7 +454,6 @@ x,,,
]; ];
for (const t of testCases) { for (const t of testCases) {
Deno.test({ Deno.test({
ignore: !!t.ignore,
name: `[CSV] ${t.Name}`, name: `[CSV] ${t.Name}`,
async fn(): Promise<void> { async fn(): Promise<void> {
let comma = ","; let comma = ",";