diff options
Diffstat (limited to 'encoding/csv_test.ts')
| -rw-r--r-- | encoding/csv_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/encoding/csv_test.ts b/encoding/csv_test.ts index 40a2abcef..0cf95b473 100644 --- a/encoding/csv_test.ts +++ b/encoding/csv_test.ts @@ -441,7 +441,7 @@ for (const t of testCases) { if (t.Error) { let err; try { - actual = await readAll(new BufReader(new StringReader(t.Input)), { + actual = await readAll(new BufReader(new StringReader(t.Input!)), { comma: comma, comment: comment, trimLeadingSpace: trim, @@ -454,7 +454,7 @@ for (const t of testCases) { assert(err); assertEquals(err.message, t.Error); } else { - actual = await readAll(new BufReader(new StringReader(t.Input)), { + actual = await readAll(new BufReader(new StringReader(t.Input!)), { comma: comma, comment: comment, trimLeadingSpace: trim, |
