We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30f63ba commit a5dc641Copy full SHA for a5dc641
emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt
@@ -42,16 +42,23 @@ class EmojiManagerTest : EmojiLoader() {
42
// GIVEN
43
44
// WHEN
45
- val emojis = emojiManager.getForTag("happy")
+ val emojis = emojiManager.getForTag("cheerful")
46
47
// THEN
48
assertEquals(1, emojis!!.size)
49
assertEquals(
50
listOf(
51
- "gesture",
52
- "hand",
+ "cheerful",
+ "cheery",
53
+ "face",
54
+ "grin",
55
+ "grinning",
56
"happy",
- "raised",
57
+ "laugh",
58
+ "nice",
59
+ "smile",
60
+ "smiling",
61
+ "teeth",
62
),
63
emojis.mapNotNull(IEmoji::tags).flatten()
64
)
0 commit comments