Fix tests in left_padded

This commit is contained in:
Yang Zhang 2018-12-28 23:10:09 +08:00
parent c0ce41540e
commit 467ab5b68e

View File

@ -16,7 +16,7 @@ func TestLeftPadMaxLine(t *testing.T) {
},
{
"foofoofoo",
"foo…",
"f...",
4,
0,
},
@ -28,13 +28,13 @@ func TestLeftPadMaxLine(t *testing.T) {
},
{
"foo",
" f…",
" ...",
4,
2,
},
{
"foofoofoo",
" foo…",
" f...",
6,
2,
},