Skip to content

Commit ac9b2d2

Browse files
committed
Run formatter
1 parent 3819cb5 commit ac9b2d2

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/lib.rs

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)