aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--util/text/left_padded_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/text/left_padded_test.go b/util/text/left_padded_test.go
index 0be79e32..a8ea12fe 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",
- "foo…",
+ "f...",
4,
0,
},
@@ -28,13 +28,13 @@ func TestLeftPadMaxLine(t *testing.T) {
},
{
"foo",
- " f…",
+ " ...",
4,
2,
},
{
"foofoofoo",
- " foo…",
+ " f...",
6,
2,
},