diff options
Diffstat (limited to 'util/text/left_padded_test.go')
-rw-r--r-- | util/text/left_padded_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/text/left_padded_test.go b/util/text/left_padded_test.go index a8ea12fe..0be79e32 100644 --- a/util/text/left_padded_test.go +++ b/util/text/left_padded_test.go @@ -16,7 +16,7 @@ func TestLeftPadMaxLine(t *testing.T) { }, { "foofoofoo", - "f...", + "foo…", 4, 0, }, @@ -28,13 +28,13 @@ func TestLeftPadMaxLine(t *testing.T) { }, { "foo", - " ...", + " f…", 4, 2, }, { "foofoofoo", - " f...", + " foo…", 6, 2, }, |