More fixes

pull/146/head
Chip Senkbeil 2 years ago
parent 4a71a204d0
commit 4a0ca34f6c
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -97,7 +97,7 @@ mod tests {
.await
.expect("Failed to start TCP server");
let mut client: Client<String, String> = Client::tcp()
let mut client: Client<String, String> = Client::<String, String>::tcp()
.auth_handler(TestAuthHandler)
.connect(SocketAddr::from((server.ip_addr(), server.port())))
.await

@ -103,7 +103,7 @@ mod tests {
.await
.expect("Failed to start Unix socket server");
let mut client: Client<String, String> = Client::unix_socket()
let mut client: Client<String, String> = Client::<String, String>::unix_socket()
.auth_handler(TestAuthHandler)
.connect(server.path())
.await

@ -59,7 +59,7 @@ mod tests {
use super::*;
use crate::{
auth::{AuthHandler, AuthQuestion, AuthVerifyKind, Authenticator},
Client, Client, ConnectionCtx, ConnectionCtx, Request, Request, ServerCtx, ServerCtx,
Client, ConnectionCtx, Request, ServerCtx,
};
use std::collections::HashMap;
@ -113,7 +113,7 @@ mod tests {
.await
.expect("Failed to start Windows pipe server");
let mut client: Client<String, String> = Client::windows_pipe()
let mut client: Client<String, String> = Client::<String, String>::windows_pipe()
.auth_handler(TestAuthHandler)
.connect(server.addr())
.await

Loading…
Cancel
Save