1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-07 00:57:22 +02:00

force test

This commit is contained in:
Kelly Brazil
2021-10-26 10:04:39 -07:00
parent 93a5002c8b
commit a2d90f4dfc

View File

@ -79,7 +79,7 @@ class MyTests(unittest.TestCase):
def test_csv_unparsable(self): def test_csv_unparsable(self):
""" """
Test CSV streaming parser with '\r' newlines. This will raise ParseError due to a Python bug 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' data = r'unparsable\rdata'
g = jc.parsers.csv_s.parse(data.splitlines(), quiet=True) g = jc.parsers.csv_s.parse(data.splitlines(), quiet=True)