Skip to content
Prev Previous commit
Next Next commit
renamed test_to_string_specified_header
  • Loading branch information
mcocdawc authored and jreback committed Mar 6, 2017
commit 87a38384578101c83d45c90ebb4c3370d082cbf1
2 changes: 1 addition & 1 deletion pandas/tests/formats/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ def test_to_string_no_header(self):

self.assertEqual(df_s, expected)

def test_to_latex_specified_header(self):
def test_to_string_specified_header(self):
df = DataFrame({'x': [1, 2, 3], 'y': [4, 5, 6]})

df_s = df.to_string(header=['X', 'Y'])
Expand Down