Skip to content

Commit 4520415

Browse files
author
maxwasserman
committed
Fixed error
1 parent a77bae3 commit 4520415

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pandas/tests/io/formats/test_to_html.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1871,15 +1871,13 @@ def test_to_html_notebook_has_style(self):
18711871
assert "tbody tr th:only-of-type" in result
18721872
assert "vertical-align: middle;" in result
18731873
assert "thead th" in result
1874-
assert "text-align: right;" in result
18751874

18761875
def test_to_html_notebook_has_no_style(self):
18771876
df = pd.DataFrame({"A": [1, 2, 3]})
18781877
result = df.to_html()
18791878
assert "tbody tr th:only-of-type" not in result
18801879
assert "vertical-align: middle;" not in result
18811880
assert "thead th" not in result
1882-
assert "text-align: right;" not in result
18831881

18841882
def test_to_html_with_index_names_false(self):
18851883
# gh-16493

0 commit comments

Comments
 (0)