Fix tests in left_padded

Yang Zhang created

Change summary

util/text/left_padded_test.go | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

Detailed changes

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,
 		},