File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -199,21 +199,15 @@ mod test {
199199 #[ test]
200200 fn symbols_are_not_emojis ( ) {
201201 assert ! (
202- are_all_variants_valid(
203- SYM ,
204- |c| !c. contains( EMOJI_PRESENTATION_SELECTOR ) ,
205- ) ,
202+ are_all_variants_valid( SYM , |c| !c. contains( EMOJI_PRESENTATION_SELECTOR ) ) ,
206203 "unexpected use of emoji presentation selector in `sym` (see list above)" ,
207204 )
208205 }
209206
210207 #[ test]
211208 fn emojis_are_not_text ( ) {
212209 assert ! (
213- are_all_variants_valid(
214- EMOJI ,
215- |c| !c. contains( TEXT_PRESENTATION_SELECTOR ) ,
216- ) ,
210+ are_all_variants_valid( EMOJI , |c| !c. contains( TEXT_PRESENTATION_SELECTOR ) ) ,
217211 "unexpected use of text presentation selector in `emoji` (see list above)" ,
218212 )
219213 }
You can’t perform that action at this time.
0 commit comments