From e97454c4a5948e905858bac02096a90726370124 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 17 May 2020 23:20:26 +0530 Subject: [PATCH] And ever more coalesce tests --- kitty_tests/fonts.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kitty_tests/fonts.py b/kitty_tests/fonts.py index 34210fe68..7c0bd5d8a 100644 --- a/kitty_tests/fonts.py +++ b/kitty_tests/fonts.py @@ -138,3 +138,7 @@ class Rendering(BaseTest): self.ae(coalesce_symbol_maps(q), {(1, 4): 'a', (5, 5): 'b'}) q = {(1, 4): 'a', (2, 5): 'a'} self.ae(coalesce_symbol_maps(q), {(1, 5): 'a'}) + q = {(1, 4): 'a', (4, 5): 'b'} + self.ae(coalesce_symbol_maps(q), {(1, 3): 'a', (4, 5): 'b'}) + q = {(4, 5): 'b', (1, 4): 'a'} + self.ae(coalesce_symbol_maps(q), {(1, 4): 'a', (5, 5): 'b'})