@@ -17,11 +17,11 @@ func TestUnicodeCodePointsSingle(t *testing.T) {
17
17
glyph string
18
18
expected string
19
19
}{
20
- {"j" , "U+006A 'j'\n " }, // ASCII
21
- {"€" , "U+20AC '€'\n " }, // Currency
22
- {"β" , "U+03B2 'β'\n " }, // Greek and Coptic
23
- {"ф" , "U+0444 'ф'\n " }, // Cyrillic
24
- {"▀" , "U+2580 '▀'\n " }, // Block elements
20
+ {"j" , "U+006A 'j'" }, // ASCII
21
+ {"€" , "U+20AC '€'" }, // Currency
22
+ {"β" , "U+03B2 'β'" }, // Greek and Coptic
23
+ {"ф" , "U+0444 'ф'" }, // Cyrillic
24
+ {"▀" , "U+2580 '▀'" }, // Block elements
25
25
}
26
26
27
27
for _ , c := range cases {
@@ -42,11 +42,11 @@ func TestUnicodeCodePointsMultiple(t *testing.T) {
42
42
glyph string
43
43
expected string
44
44
}{
45
- {"j" , "U+006A 'j'\n " }, // ASCII
46
- {"€" , "U+20AC '€'\n " }, // Currency
47
- {"β" , "U+03B2 'β'\n " }, // Greek and Coptic
48
- {"ф" , "U+0444 'ф'\n " }, // Cyrillic
49
- {"▀" , "U+2580 '▀'\n " }, // Block elements
45
+ {"j" , "U+006A 'j'" }, // ASCII
46
+ {"€" , "U+20AC '€'" }, // Currency
47
+ {"β" , "U+03B2 'β'" }, // Greek and Coptic
48
+ {"ф" , "U+0444 'ф'" }, // Cyrillic
49
+ {"▀" , "U+2580 '▀'" }, // Block elements
50
50
}
51
51
52
52
var testglyphs []string
0 commit comments