Remove unnecessary comma

This commit is contained in:
Ruben Schmidmeister 2019-05-15 18:29:04 +02:00
parent c84785d93c
commit 424193041f
No known key found for this signature in database
GPG key ID: 29387B5A7AAF863F

View file

@ -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)));
}
}