chore: fix clippy lints

This commit is contained in:
ThetaDev 2023-08-30 22:05:18 +02:00
parent 4780096b00
commit ac25490435
15 changed files with 70 additions and 73 deletions

View file

@ -809,7 +809,7 @@ mod tests {
let test_json = r#"{"ln": {}}"#;
let res = serde_json::from_str::<SLinks>(test_json).unwrap();
assert!(res.ln.0.is_empty())
assert!(res.ln.0.is_empty());
}
#[test]