Skip to content

Commit 27eaf1b

Browse files
committed
Fix test
1 parent 0972c87 commit 27eaf1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_html_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
class TestHTMLConverter(TestCase):
3434
def test_html_to_nodes(self):
3535

36-
if sys.version_info.major == 3 and sys.version_info.minor == 5:
36+
if sys.version_info.major == 3 and sys.version_info.minor >= 5:
3737
self.assertEqual(
3838
html_to_nodes(HTML_TEST_STR),
3939
NODES_TEST_LIST_PY35

0 commit comments

Comments
 (0)