From c73f5ab8a0505b271cdf864fb6b596d88ca39777 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 23 Mar 2025 19:37:23 +0530 Subject: [PATCH] ... --- tools/wcswidth/char-props_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/wcswidth/char-props_test.go b/tools/wcswidth/char-props_test.go index 51dd957e6..ff9342390 100644 --- a/tools/wcswidth/char-props_test.go +++ b/tools/wcswidth/char-props_test.go @@ -3,8 +3,8 @@ package wcswidth import ( "encoding/json" "fmt" - "strings" "os/exec" + "strings" "testing" "github.com/google/go-cmp/cmp" @@ -22,7 +22,7 @@ type GraphemeBreakTest struct { func TestSplitIntoGraphemes(t *testing.T) { var m = map[string][]string{ " \u0308 ": []string{" \u0308", " "}, - "abc": []string{"a", "b", "c"}, + "abc": []string{"a", "b", "c"}, } for text, expected := range m { if diff := cmp.Diff(expected, SplitIntoGraphemes(text)); diff != "" {