Skip to content

Commit 23adc5d

Browse files
fix test
1 parent 439fd18 commit 23adc5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/formats/test_format.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1841,7 +1841,7 @@ def test_to_string_without_index(self):
18411841
# GH 11729 Test index=False option
18421842
s = Series([1, 2, 3, 4])
18431843
result = s.to_string(index=False)
1844-
expected = (' 1\n' + ' 2\n' + ' 3\n' + ' 4')
1844+
expected = ('1\n' + '2\n' + '3\n' + '4')
18451845
assert result == expected
18461846

18471847
def test_unicode_name_in_footer(self):

0 commit comments

Comments
 (0)