We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a77bae3 commit 4520415Copy full SHA for 4520415
pandas/tests/io/formats/test_to_html.py
@@ -1871,15 +1871,13 @@ def test_to_html_notebook_has_style(self):
1871
assert "tbody tr th:only-of-type" in result
1872
assert "vertical-align: middle;" in result
1873
assert "thead th" in result
1874
- assert "text-align: right;" in result
1875
1876
def test_to_html_notebook_has_no_style(self):
1877
df = pd.DataFrame({"A": [1, 2, 3]})
1878
result = df.to_html()
1879
assert "tbody tr th:only-of-type" not in result
1880
assert "vertical-align: middle;" not in result
1881
assert "thead th" not in result
1882
- assert "text-align: right;" not in result
1883
1884
def test_to_html_with_index_names_false(self):
1885
# gh-16493
0 commit comments