From f8b76c6af360adad862e30915fc65d0ccb34db1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Damir=20Jeli=C4=87?= Date: Mon, 24 Feb 2020 12:51:42 +0100 Subject: [PATCH] test: Use the new library name. --- src/async_client.rs | 4 ++-- tests/async_client_tests.rs | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/async_client.rs b/src/async_client.rs index d53dfc81..35607cd9 100644 --- a/src/async_client.rs +++ b/src/async_client.rs @@ -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") diff --git a/tests/async_client_tests.rs b/tests/async_client_tests.rs index 12ddc2b7..5fb15ab4 100644 --- a/tests/async_client_tests.rs +++ b/tests/async_client_tests.rs @@ -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;