From 1dc079f30aedeed6f8a25c6f54d601c1c5ecab0f Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 11 Nov 2021 10:37:20 +0000 Subject: [PATCH] Test for multi character emoji reaction --- tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests.py b/tests.py index 0855fa929..6e3641260 100644 --- a/tests.py +++ b/tests.py @@ -5914,6 +5914,7 @@ def _testValidEmojiContent() -> None: assert not validEmojiContent(None) assert not validEmojiContent(' ') assert not validEmojiContent('j') + assert not validEmojiContent('😀😀') assert validEmojiContent('😀') assert validEmojiContent('😄')