From 424193041ff64e1f97975e540adcf488e278836e Mon Sep 17 00:00:00 2001 From: Ruben Schmidmeister Date: Wed, 15 May 2019 18:29:04 +0200 Subject: [PATCH] Remove unnecessary comma --- src/checkstyle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkstyle.rs b/src/checkstyle.rs index d0fbed57cf20..5c2b46583b43 100644 --- a/src/checkstyle.rs +++ b/src/checkstyle.rs @@ -97,6 +97,6 @@ mod tests { #[test] fn other_characters_are_not_escaped() { let string = "The quick brown 🦊 jumps over the lazy 🐶"; - assert_eq!(string, format!("{}", XmlEscaped(string)),); + assert_eq!(string, format!("{}", XmlEscaped(string))); } }