test: Use the new library name.

master
Damir Jelić 2020-02-24 12:51:42 +01:00
parent d2141624d0
commit f8b76c6af3
2 changed files with 4 additions and 4 deletions

View File

@ -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")

View File

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