From 555f5867751619b882bde65f6d181d7092c913a0 Mon Sep 17 00:00:00 2001 From: "Gerber, Mike" Date: Wed, 17 Aug 2022 17:59:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Note=20that=20old=20terminals=20?= =?UTF-8?q?might=20not=20render=20the=20Unicode=20characters=20correctly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- qurator/dinglehopper/tests/test_editops.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qurator/dinglehopper/tests/test_editops.py b/qurator/dinglehopper/tests/test_editops.py index 7233cf4..666d8b9 100644 --- a/qurator/dinglehopper/tests/test_editops.py +++ b/qurator/dinglehopper/tests/test_editops.py @@ -7,6 +7,8 @@ def test_editops(): """Test editops() in cases where dealing with grapheme clusters matters""" # In these cases, one of the words has a composed form, the other one does not. + # (Also, note that old terminal emulators might not render the combining characters + # correctly, be sure to read in an editor.) assert editops("Schlyñ", "Schlym̃") == [("replace", 5, 5)] assert editops("oͤde", "öde") == [("replace", 0, 0)]