Skip to content

Commit d892c39

Browse files
committed
Fix a failing tests for read_html - explicitly pass the match parameter that is no more positional.
1 parent c6a0e67 commit d892c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/test_html.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def test_invalid_flavor():
7272
msg = r"\{" + flavor + r"\} is not a valid set of flavors"
7373

7474
with pytest.raises(ValueError, match=msg):
75-
read_html(url, "google", flavor=flavor)
75+
read_html(url, match="google", flavor=flavor)
7676

7777

7878
@td.skip_if_no("bs4")

0 commit comments

Comments
 (0)