Skip to content

Commit cd92db9

Browse files
committed
REF: split column_format tests
1 parent 2b66e2f commit cd92db9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/formats/test_to_latex.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,11 @@ def test_to_latex_bad_column_format(self, bad_column_format):
100100
with pytest.raises(ValueError, match=msg):
101101
df.to_latex(column_format=bad_column_format)
102102

103-
def test_to_latex_column_format(self, float_frame):
103+
def test_to_latex_column_format_just_works(self, float_frame):
104104
# GH Bug #9402
105105
float_frame.to_latex(column_format="lcr")
106106

107+
def test_to_latex_column_format(self):
107108
df = DataFrame({"a": [1, 2], "b": ["b1", "b2"]})
108109
result = df.to_latex(column_format="lcr")
109110
expected = _dedent(

0 commit comments

Comments
 (0)