From a2d90f4dfcdc2cb00c6c0fa957493c95a21e256b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 26 Oct 2021 10:04:39 -0700 Subject: [PATCH] force test --- tests/test_csv_s.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_csv_s.py b/tests/test_csv_s.py index 5871332f..9b207231 100644 --- a/tests/test_csv_s.py +++ b/tests/test_csv_s.py @@ -79,7 +79,7 @@ class MyTests(unittest.TestCase): def test_csv_unparsable(self): """ Test CSV streaming parser with '\r' newlines. This will raise ParseError due to a Python bug - that does not correctly iterate on that line ending with sys.stdin. + that does not correctly iterate on that line ending with sys.stdin. """ data = r'unparsable\rdata' g = jc.parsers.csv_s.parse(data.splitlines(), quiet=True)