Skip to content

Commit a5dc641

Browse files
committed
test: update tag filter to use cheerful instead of happy
1 parent 30f63ba commit a5dc641

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

emojify/src/test/kotlin/io/wax911/emojify/EmojiManagerTest.kt

+11-4
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,23 @@ class EmojiManagerTest : EmojiLoader() {
4242
// GIVEN
4343

4444
// WHEN
45-
val emojis = emojiManager.getForTag("happy")
45+
val emojis = emojiManager.getForTag("cheerful")
4646

4747
// THEN
4848
assertEquals(1, emojis!!.size)
4949
assertEquals(
5050
listOf(
51-
"gesture",
52-
"hand",
51+
"cheerful",
52+
"cheery",
53+
"face",
54+
"grin",
55+
"grinning",
5356
"happy",
54-
"raised",
57+
"laugh",
58+
"nice",
59+
"smile",
60+
"smiling",
61+
"teeth",
5562
),
5663
emojis.mapNotNull(IEmoji::tags).flatten()
5764
)

0 commit comments

Comments
 (0)