Skip to content

Commit

Permalink
fix fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Laux committed Nov 16, 2023
1 parent d564eb9 commit ae8f6eb
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions tests/text_to_ast/text_only.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,21 +610,15 @@ fn link_in_parenthesis2() {
);
}


#[test]
fn bot_suggestion_is_no_email() {
assert_eq!(
parse_only_text("/command@[email protected]"),
vec![
BotCommandSuggestion("/command@[email protected]"),
]
vec![BotCommandSuggestion("/command@[email protected]"),]
);
assert_eq!(
parse_only_text("\n/command@[email protected]"),
vec![
Linebreak,
BotCommandSuggestion("/command@[email protected]"),
]
vec![Linebreak, BotCommandSuggestion("/command@[email protected]"),]
);

assert_eq!(
Expand Down

0 comments on commit ae8f6eb

Please sign in to comment.