From b48d8188b9446cb43f31a0191d059f001d186a22 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Mon, 14 Feb 2022 22:31:30 +0100 Subject: [PATCH] Change our test emoji The emoji we used wasn't actually widened-in-9, so we now switch to one that does. --- tests/checks/string.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/checks/string.fish b/tests/checks/string.fish index 8aaa400dd..7ffe2d427 100644 --- a/tests/checks/string.fish +++ b/tests/checks/string.fish @@ -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