Skip to content

Commit 7b414a9

Browse files
author
Sylvain MARIE
committed
Code review: reverted out of scope change
1 parent 8f65bd9 commit 7b414a9

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

pandas/tests/io/parser/test_quoting.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,7 @@ def test_bad_quote_char(all_parsers, kwargs, msg):
3939
@pytest.mark.parametrize(
4040
"quoting,msg",
4141
[
42-
(
43-
"foo",
44-
# This error message changed across versions
45-
'"quoting" must be an integer|'
46-
+ re.escape(
47-
"Argument 'quoting' has incorrect type (expected int, got str)"
48-
),
49-
),
50-
(5, 'bad "quoting" value'), # quoting must be in the range [0, 3]
42+
("foo", '"quoting" must be an integer|Argument'),
5143
],
5244
)
5345
def test_bad_quoting(all_parsers, quoting, msg):

0 commit comments

Comments
 (0)