@@ -122,15 +122,15 @@ public function test_wp_emoji_list_returns_data() {
122122 $ entities = _wp_emoji_list ( 'entities ' );
123123 $ this ->assertNotEmpty ( $ entities , 'Entities should not be empty ' );
124124 $ this ->assertIsArray ( $ entities , 'Entities should be an array ' );
125- // Emoji 15 contains 3718 entities, this number will only increase.
126- $ this ->assertGreaterThanOrEqual ( 3718 , count ( $ entities ), 'Entities should contain at least 3718 items ' );
125+ // Emoji 17 contains 4007 entities, this number will only increase.
126+ $ this ->assertGreaterThanOrEqual ( 4007 , count ( $ entities ), 'Entities should contain at least 4007 items ' );
127127 $ this ->assertSame ( $ default , $ entities , 'Entities should be returned by default ' );
128128
129129 $ partials = _wp_emoji_list ( 'partials ' );
130130 $ this ->assertNotEmpty ( $ partials , 'Partials should not be empty ' );
131131 $ this ->assertIsArray ( $ partials , 'Partials should be an array ' );
132- // Emoji 15 contains 1424 partials, this number will only increase.
133- $ this ->assertGreaterThanOrEqual ( 1424 , count ( $ partials ), 'Partials should contain at least 1424 items ' );
132+ // Emoji 17 contains 1438 partials, this number will only increase.
133+ $ this ->assertGreaterThanOrEqual ( 1438 , count ( $ partials ), 'Partials should contain at least 1438 items ' );
134134
135135 $ this ->assertNotSame ( $ default , $ partials );
136136 }
0 commit comments