We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8dee48 commit f255654Copy full SHA for f255654
2 files changed
emoji_data_python/data/emoji.json
tests/test_search.py
@@ -5,7 +5,7 @@
5
6
class SearchTestCase(unittest.TestCase):
7
def test_all_emoji_length(self):
8
- self.assertEqual(1810, len(emoji_data))
+ self.assertEqual(1903, len(emoji_data))
9
10
def test_all_double_bytes(self):
11
self.assertEqual('HASH KEY', all_doublebyte()[0].name) # HASH_KEY is the first double byte char
@@ -15,7 +15,7 @@ def test_find_by_shortname(self):
15
self.assertEqual('WAVING HAND SIGN', find_by_shortname('wave')[0].name)
16
17
def test_find_by_shortname_unique(self):
18
- self.assertEqual(28, len(find_by_shortname('heart')))
+ self.assertEqual(34, len(find_by_shortname('heart')))
19
self.assertEqual(14, len(find_by_shortname('moon')))
20
21
def test_find_by_name(self):
0 commit comments