test: Use the new library name.
parent
d2141624d0
commit
f8b76c6af3
|
@ -67,7 +67,7 @@ pub struct AsyncClient {
|
|||
/// ```
|
||||
/// // To pass all the request through mitmproxy set the proxy and disable SSL
|
||||
/// // verification
|
||||
/// use matrix_nio::AsyncClientConfig;
|
||||
/// use matrix_sdk::AsyncClientConfig;
|
||||
///
|
||||
/// let client_config = AsyncClientConfig::new()
|
||||
/// .proxy("http://localhost:8080")
|
||||
|
@ -97,7 +97,7 @@ impl AsyncClientConfig {
|
|||
/// # Example
|
||||
///
|
||||
/// ```
|
||||
/// use matrix_nio::AsyncClientConfig;
|
||||
/// use matrix_sdk::AsyncClientConfig;
|
||||
///
|
||||
/// let client_config = AsyncClientConfig::new()
|
||||
/// .proxy("http://localhost:8080")
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use matrix_nio::identifiers::UserId;
|
||||
use matrix_nio::{AsyncClient, Session, SyncSettings};
|
||||
use matrix_sdk::identifiers::UserId;
|
||||
use matrix_sdk::{AsyncClient, Session, SyncSettings};
|
||||
|
||||
use mockito::{mock, Matcher};
|
||||
use tokio::runtime::Runtime;
|
||||
|
|
Loading…
Reference in New Issue