chore: fix lint warnings (#339)

This commit is contained in:
Santiago Carmuega 2023-11-20 19:46:14 -03:00 committed by GitHub
parent 6203fe1ecd
commit 24b7139e4b
2 changed files with 96 additions and 88 deletions

View file

@ -462,7 +462,7 @@ pub async fn local_state_query_server_and_client_happy_path() {
let socket_path = Path::new("node.socket");
if socket_path.exists() {
fs::remove_file(&socket_path).unwrap();
fs::remove_file(socket_path).unwrap();
}
let unix_listener = UnixListener::bind(socket_path).unwrap();