From e975cf63578345ecd39771eb90d04a9190f972dc Mon Sep 17 00:00:00 2001 From: Caleb-Irwin <56744087+Caleb-Irwin@users.noreply.github.com> Date: Tue, 9 Feb 2021 20:33:14 -0600 Subject: [PATCH] Actually Fixed Test Third times the charm? --- packages/parse/__tests__/CsvParsingStream.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/parse/__tests__/CsvParsingStream.spec.ts b/packages/parse/__tests__/CsvParsingStream.spec.ts index c86ca80c..9f02e0a4 100644 --- a/packages/parse/__tests__/CsvParsingStream.spec.ts +++ b/packages/parse/__tests__/CsvParsingStream.spec.ts @@ -479,7 +479,7 @@ describe('CsvParserStream', () => { return new Promise((res, rej) => { write(malformed); const stream = parseFile(malformed.path, { headers: true }); - expectErrorEvent(stream, "Parse Error: expected: ',' OR new line got: 'a'. at 'a '\", Las", res, rej); + expectErrorEvent(stream, "Parse Error: expected: ',' OR new line got: 'a'. at 'a \", Las'", res, rej); }); });