Skip to content

Commit c30a543

Browse files
committed
add html5 parser to test
1 parent a30971d commit c30a543

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

astroquery/atomic/tests/test_atomic_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def test_default_form_values():
1212
default_response = AtomicLineList._request(
1313
method="GET", url=AtomicLineList.FORM_URL,
1414
data={}, timeout=AtomicLineList.TIMEOUT)
15-
bs = BeautifulSoup(default_response.text)
15+
bs = BeautifulSoup(default_response.text, 'html5')
1616
form = bs.find('form')
1717

1818
default_form_values = AtomicLineList._get_default_form_values(form)

0 commit comments

Comments
 (0)