From 1f51372069b3cc204ffc43b6ef59a82f4bd32f07 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Wed, 25 Jan 2023 14:52:31 -0500 Subject: The HTMLFormatter and XMLFormatter constructors no longer return a value. [bug=1992693] --- bs4/tests/test_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bs4/tests/test_tree.py') diff --git a/bs4/tests/test_tree.py b/bs4/tests/test_tree.py index f40e764..e456966 100644 --- a/bs4/tests/test_tree.py +++ b/bs4/tests/test_tree.py @@ -913,7 +913,7 @@ class TestTreeModification(SoupTest): @pytest.mark.parametrize( "get_tags", [lambda tag: tag, lambda tag: tag.contents] ) - def test_extend_with_another_tags_contents(self, tags): + def test_extend_with_another_tags_contents(self, get_tags): data = '
1234
' soup = self.soup(data) d1 = soup.find('div', id='d1') -- cgit v1.2.3