Skip to content

Commit 4fd7315

Browse files
Backport PR #44443: COMPAT: Python 3.9.8 (#44444)
Co-authored-by: Thomas Li <[email protected]>
1 parent 16d51c2 commit 4fd7315

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/parser/test_quoting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{"quotechar": None, "quoting": csv.QUOTE_MINIMAL},
2323
"quotechar must be set if quoting enabled",
2424
),
25-
({"quotechar": 2}, '"quotechar" must be string, not int'),
25+
({"quotechar": 2}, '"quotechar" must be string( or None)?, not int'),
2626
],
2727
)
2828
def test_bad_quote_char(all_parsers, kwargs, msg):

0 commit comments

Comments
 (0)