Change our test emoji

The emoji we used wasn't actually widened-in-9, so we now switch to
one that does.
This commit is contained in:
Fabian Homborg 2022-02-14 22:31:30 +01:00
parent 34f4be1149
commit b48d8188b9

View file

@ -93,11 +93,11 @@ string length --visible (set_color red)abc
begin
set -l fish_emoji_width 2
# This should print the emoji width
string length --visible . 🥁
string length --visible . \U2693
# CHECK: 1
# CHECK: 2
set -l fish_emoji_width 1
string length --visible . 🥁
string length --visible . \U2693
# CHECK: 1
# CHECK: 1
end